Function findLastSet [src]

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

Prototype

pub fn findLastSet(self: Self) ?usize

Parameters

self: Self

Source

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