Function findFirstSet [src]

Finds the index of the first set bit. If no bits are set, returns null.

Prototype

pub fn findFirstSet(self: Self) ?usize

Parameters

self: Self

Source

pub fn findFirstSet(self: Self) ?usize { return self.unmanaged.findFirstSet(); }