Skip to main content

TypedMapI64F64

Type Alias TypedMapI64F64 

Source
pub type TypedMapI64F64 = TypedMap<i64, f64>;

Aliased Type§

#[repr(C)]
pub struct TypedMapI64F64 { pub header: HeapHeader, pub buckets: *mut Bucket<i64, f64>, pub bucket_count: u32, pub len: u32, pub tombstone_count: u32, pub _pad: u32, }

Fields§

§header: HeapHeader§buckets: *mut Bucket<i64, f64>

Pointer to bucket array.

§bucket_count: u32

Number of buckets (always a power of 2).

§len: u32

Number of live entries.

§tombstone_count: u32

Number of tombstones.

§_pad: u32