use crateAtomicU32;
/// A node in various linked lists used in the allocator.
/// Each node is associated with a slab index.
/// Since a node is only part of a single linked list at a time,
/// we could have re-used the same memory. However, doing this
/// structure is used for convenience and clarity - without too much
/// additional memory overhead.