orx_tree/
aliases.rs

1use crate::{memory::MemoryPolicy, pinned_storage::PinnedStorage};
2use orx_selfref_col::SelfRefCol;
3
4pub(crate) type N<V> = orx_selfref_col::Node<V>;
5
6pub(crate) type Col<V, M, P> =
7    SelfRefCol<V, <M as MemoryPolicy>::MemoryReclaimPolicy<V>, <P as PinnedStorage>::PinnedVec<V>>;