sffs 0.1.0

A collection of bitwise operations
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 14.47 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.1 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • shinnya

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));