13 releases (4 breaking)

0.114.0 Nov 20, 2024
0.113.0 Oct 22, 2024
0.110.1 Jul 22, 2024

#1027 in WebAssembly

Download history 15872/week @ 2024-08-17 15661/week @ 2024-08-24 17676/week @ 2024-08-31 17034/week @ 2024-09-07 21280/week @ 2024-09-14 25918/week @ 2024-09-21 26235/week @ 2024-09-28 26269/week @ 2024-10-05 26798/week @ 2024-10-12 34705/week @ 2024-10-19 37855/week @ 2024-10-26 35050/week @ 2024-11-02 36108/week @ 2024-11-09 41450/week @ 2024-11-16 41103/week @ 2024-11-23 63644/week @ 2024-11-30

188,787 downloads per month
Used in 164 crates (4 directly)

Apache-2.0 WITH LLVM-exception

33KB
407 lines

Bitsets for Cranelift.

This module provides two bitset implementations:

  1. ScalarBitSet: A small bitset built on top of a single integer.

  2. CompoundBitSet: A bitset that can store more bits than fit in a single integer, but which internally has heap allocations.

Dependencies

~190KB