Function isSet [src]
Returns true if the bit at the specified index
is present in the set, false otherwise.
Prototype
pub fn isSet(self: Self, index: usize) bool
Parameters
self: Self
index: usize
Source
pub fn isSet(self: Self, index: usize) bool {
assert(index < self.bit_length);
return (self.masks[maskIndex(index)] & maskBit(index)) != 0;
}