1 2 3 4 5
/// Marker for NULL in linked lists when using u32 as an index type. pub const NULL_U32: u32 = u32::MAX; /// Marker for NULL in linked lists when using usize as an index type. pub const NULL_USIZE: usize = usize::MAX;