Function setUnion [src]

Performs a union of two bit sets, and stores the result in the first one. Bits in the result are set if the corresponding bits were set in either input. The two sets must both be the same bit_length.

Prototype

pub fn setUnion(self: *Self, other: Self) void

Parameters

self: *Selfother: Self

Source

pub fn setUnion(self: *Self, other: Self) void { self.unmanaged.setUnion(other.unmanaged); }