Package: gobject
Function g-type-qdata
Lambda Listg-type-qdata (gtype quark) SyntaxArgumentsDetails The function g-type-qdata obtains data which has previously been attached to gtype with the function (setf g-type-qdata). Note that this does not take subtyping into account. Data attached to one type cannot be retrieved from a subtype. Examples(setf (g-type-qdata "gboolean" "mydata") "a string") => "a string" (g-type-qdata "gboolean" "mydata") => "a string" (setf (g-type-qdata "gboolean" "mydata") '(a b c)) => (A B C) (g-type-qdata "gboolean" "mydata") => (A B C) (setf (g-type-qdata "gboolean" "mydata") nil) => NIL (g-type-qdata "gboolean" "mydata") => NIL | See also |
2020-11-14