bitvec 1.0.1

Addresses memory by bits, for packed collections and bitfields
Documentation
1
2
3
4
5
6
7
8
9
10
# Bit-Pointer Sentinel Value

`BitPtr` does not permit actual null pointers. Instead, it uses the canonical
dangling address as a sentinel for uninitialized, useless, locations.

You should use `Option<BitPtr>` if you need to track nullability.

## Original

[`ptr::null`](core::ptr::null)