Function toggle [src]
Flips a specific bit in the bit set
Prototype
pub fn toggle(self: *Self, index: usize) void Parameters
self: *Selfindex: usize Source
pub fn toggle(self: *Self, index: usize) void {
self.unmanaged.toggle(index);
}