Expand description
This module contains utility functionality needed for this crate. Most prominently, it contains the definition of the USizeSet used for storing cell options for strategies.
Structs§
- USize
Set - A set of
usize
that is implemented as a bit vector. Eachusize
that is in the range of possible elements is represented by one bit in a vector of numbers. This generally has better performance than aHashSet
. - USize
SetIter - An iterator over the content of a USizeSet.
Enums§
- USize
SetError - An enumeration of the errors that can happen when using a USizeSet.
Type Aliases§
- USize
SetResult - Syntactic sugar for
Result<V, USizeSetError>
.