structstd.array_hash_map.ArrayHashMapUnmanaged.Entry[src]

Modifying the key is allowed only if it does not change the hash. Modifying the value is allowed. Entry pointers become invalid whenever this ArrayHashMap is modified, unless ensureTotalCapacity/ensureUnusedCapacity was previously used.

Fields

key_ptr: *K
value_ptr: *V

Source Code

Source code
pub const Entry = struct {
    key_ptr: *K,
    value_ptr: *V,
}