Package: glib

Function glib:variant-new-tuple

Lambda List

glib:variant-new-tuple (&rest items)

Arguments

items -- g:variant instances with the items to make the tuple out of

Return Value

The new g:variant instance with the tuple.

Details

Creates a new tuple g:variant instance out of the items. The type is determined from the types of items.

Examples

(g:variant-new-tuple (g:variant-new-int16 10) (g:variant-new-int16 20))
=> #.(SB-SYS:INT-SAP #X6195B5F9ED70)
(g:variant-print *)
=> "(10, 20)"    
 

See also

2025-2-2