Function set [src]

Adds a specific bit to the bit set

Prototype

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

Parameters

self: *Selfindex: usize

Source

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