Expand description
Bitset implementation.
Bitsets are powered by the bitset_core crate.
Macros§
- bitor
- Shorthand for combining bitsets with bit_or.
- bitset
- Shorthand for setting bits on the bitset container.
- impl_
bitset - Implements the
BitSettrait members for your type throughDerefMut.
Structs§
- BitFmt
- BitSet formatter.
- BitSet
Vec - The type of bitsets used to track entities in component storages. Mostly used to create caches.
Traits§
- BitSet
- The BitSet API.
Functions§
- create_
bitset - Creates a bitset big enough to contain the index of each entity. Mostly used to create caches.