Type Alias TArcInterner

Source
pub type TArcInterner<T, const N: usize = 4, const GC: usize = 0> = GCInterner<Arc<T>, N, GC>;

Aliased Type§

pub struct TArcInterner<T, const N: usize = 4, const GC: usize = 0> {
    store: BTreeMap<u64, SmallVec<Arc<T>, N>>,
}

Fields§

§store: BTreeMap<u64, SmallVec<Arc<T>, N>>