1 unstable release

0.1.0 Jun 10, 2019


Used in nicolas

Apache-2.0

6KB
69 lines

sffs(Software implemented Find First Set)

Overview

sffs is a collection of bitwise operations, especially FFS.

Example

// Count leading zeros
assert_eq!(4, sffs:clz(1u64 << 60));

lib.rs:

A collection of bitwise operations.

No runtime deps