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 u16 as an index type. pub const NULL_U16: u16 = u16::MAX;