Function toggleSet [src]

Flips all bits in this bit set which are present in the toggles bit set. Both sets must have the same bit_length.

Prototype

pub fn toggleSet(self: *Self, toggles: Self) void

Parameters

self: *Selftoggles: Self

Source

pub fn toggleSet(self: *Self, toggles: Self) void { self.unmanaged.toggleSet(toggles.unmanaged); }