Package: gtk

Function gtk:bitset-size

Lambda List

gtk:bitset-size (bitset)

Arguments

bitset -- a gtk:bitset instance

Return Value

The unsigned integer with the number of values in bitset.

Details

Gets the number of values that were added to the bitset. For example, if the bitset is empty, 0 is returned.

Examples

(defvar bitset (gtk:bitset-new-range 100 50)) => BITSET
(gtk:bitset-size bitset) => 50    
 

See also

2025-3-13