bits128 0.1.3

A struct to iterate over 128 bits by taking only 128 bits
Documentation
  • Coverage
  • 80%
    8 out of 10 items documented7 out of 9 items with examples
  • Size
  • Source code size: 7.94 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.88 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • elichai/Bits128
    1 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • elichai

Bits128

Iterating over 128 array of bytes

bits128 provides a struct that let's you use 128 bits while taking only 128 bits in memory. if you would use something like [bool; 128] it would take 128*8 bits in memory because every bool takes 1 bytes(8bits) In the future I'll implement an Iterator over the bits so you can iterate over them easily.