Function setValue [src]
Changes the value of the specified bit of the bit
set to match the passed boolean.
Prototype
pub fn setValue(self: *Self, index: usize, value: bool) void Parameters
self: *Selfindex: usizevalue: bool Source
pub fn setValue(self: *Self, index: usize, value: bool) void {
self.unmanaged.setValue(index, value);
}