intset 1.0.2

Various integer set data structures, each efficient for different operations.
Documentation
  • Coverage
  • 100%
    19 out of 19 items documented9 out of 18 items with examples
  • Size
  • Source code size: 28.19 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.79 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
  • deadpixi/intset
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • deadpixi

intset

Various integer sets in Rust, tuned to be fast for certain operations.

GrowSet

GrowSet is a simple set of integers. It supports O(1) addition, clearing, and membership testing, and O(n) iteration.

ShrinkSet

ShrinkSet is a simple set of integers. It supports O(1) removal, refilling, and membership testing, and O(n) iteration.