Function unset [src]

Removes a specific bit from the bit set

Prototype

pub fn unset(self: *Self, index: usize) void

Parameters

self: *Selfindex: usize

Source

pub fn unset(self: *Self, index: usize) void { assert(index < self.bit_length); self.masks[maskIndex(index)] &= ~maskBit(index); }