std::collections::bitset {SIZE}
Public
Types
| Name | Description |
|---|---|
| BitSet |
Functions
| Name | Description |
|---|---|
| bitset::cardinality | |
| bitset::xor | Perform xor over all bits, returning a new bit set. |
| bitset::or | Perform or over all bits, returning a new bit set. |
| bitset::unset | Unset (clear) a bit in the bitset. |
| bitset::xor_self | Perform xor over all bits, mutating itself |
| bitset::or_self | Perform or over all bits, mutating itself |
| bitset::set | Set a bit in the bitset. |
| bitset::len | Return the number of bits. |
| bitset::get | Get a particular bit in the bitset |
| bitset::set_bool | Change a particular bit in the bitset |
| bitset::and_self | Perform & over all bits, mutating itself. |
| bitset::and | Perform & over all bits, returning a new bit set. |
Globals
| Name | Description |
|---|---|
| SZ | |
| BITS |