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