Skip to main content

hb_cache_t

Type Alias hb_cache_t 

Source
pub type hb_cache_t<const KEY_BITS: usize, const VALUE_BITS: usize, const CACHE_SIZE: usize, const STORAGE_BITS: usize> = hb_cache_core_t<KEY_BITS, VALUE_BITS, CACHE_SIZE, <() as SelectAtomic<STORAGE_BITS>>::Type>;
Expand description

Public wrapper

Aliased Type§

pub struct hb_cache_t<const KEY_BITS: usize, const VALUE_BITS: usize, const CACHE_SIZE: usize, const STORAGE_BITS: usize> {
    values: [<() as SelectAtomic<STORAGE_BITS>>::Type; CACHE_SIZE],
}

Fields§

§values: [<() as SelectAtomic<STORAGE_BITS>>::Type; CACHE_SIZE]