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 { assert(index < self.bit_length); const bit = maskBit(index); const mask_index = maskIndex(index); const new_bit = bit & std.math.boolMask(MaskInt, value); self.masks[mask_index] = (self.masks[mask_index] & ~bit) | new_bit; }