Package: gtk

Function gtk:bitset-minimum

Lambda List

gtk:bitset-minimum (bitset)

Arguments

bitset -- a gtk:bitset instance

Return Value

The unsigned integer with the smallest value in bitset.

Details

Returns the smallest value in the bitset. If the bitset is empty, the maximum value for an unsigned 32-bit integer variable is returned, that is the #xffffffff value.

Examples

(defvar bitset (gtk:bitset-new-range 100 50)) => BITSET
(gtk:bitset-minimum bitset) => 100
(gtk:bitset-maximum bitset) => 149
(gtk:bitset-minimum (gtk:bitset-new-empty)) => 4294967295
(gtk:bitset-maximum (gtk:bitset-new-empty)) => 0    
 

See also

2025-3-13