Package: gobject
Function gobject:type-qdata
Lambda Listgobject:type-qdata (gtype quark) SyntaxArgumentsDetails                The g:type-qdata function obtains data which has previously been    attached to gtype with the (setf g:type-qdata) function.   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 | 
2023-12-8