A read-only alias for the value of a UnsafeBitArray. Does not have its own allocated storage.
| Property | Description |
|---|---|
| IsCreated | Whether this array has been allocated (and not yet deallocated). |
| IsEmpty | Whether the container is empty. |
| Length | Returns the number of bits. |
| Method | Description |
|---|---|
| CountBits | Returns the number of bits in a range that are 1. |
| Find | Finds the first length-"N" contiguous sequence of 0 bits in this bit array. |
| GetBits | Returns a ulong which has bits copied from this array. |
| IsSet | Returns true if the bit at an index is 1. |
| TestAll | Returns true if all of the bits in a range are 1. |
| TestAny | Returns true if at least one of the bits in a range is 1. |
| TestNone | Returns true if none of the bits in a range are 1 ("i.e." all bits in the range are 0). |