14 releases (5 breaking)

0.115.0 Dec 20, 2024
0.114.0 Nov 20, 2024
0.113.1 Nov 5, 2024
0.110.1 Jul 22, 2024

#1061 in WebAssembly

Download history 17547/week @ 2024-09-08 20951/week @ 2024-09-15 26674/week @ 2024-09-22 26145/week @ 2024-09-29 25436/week @ 2024-10-06 27278/week @ 2024-10-13 34891/week @ 2024-10-20 38030/week @ 2024-10-27 35205/week @ 2024-11-03 36419/week @ 2024-11-10 41250/week @ 2024-11-17 42101/week @ 2024-11-24 61154/week @ 2024-12-01 56490/week @ 2024-12-08 51585/week @ 2024-12-15 29462/week @ 2024-12-22

202,340 downloads per month
Used in 182 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