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 {
return self.unmanaged.isSet(index);
}