BitsetIter.initAt

bool initAt(out gtk.bitset_iter.BitsetIter iter, gtk.bitset.Bitset set, uint target, out uint value) static nothrow

Initializes iter to point to target.

If target is not found, finds the next value after it. If no value >= target exists in set, this function returns false.

Parameters

itera pointer to an uninitialized gtk.bitset_iter.BitsetIter
seta gtk.bitset.Bitset
targettarget value to start iterating at
valueSet to the found value in set

Returns

true if a value was found.