blob: 71f2b387666cd30306b8e5d3db8e1a682084a5c7 [file] [log] [blame] [view]
# 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)