Type Function AutoArrayHashMap [src]

An ArrayHashMap with default hash and equal functions. See AutoContext for a description of the hash and equal implementations.

Prototype

pub fn AutoArrayHashMap(comptime K: type, comptime V: type) type

Parameters

K: typeV: type

Source

pub fn AutoArrayHashMap(comptime K: type, comptime V: type) type { return ArrayHashMap(K, V, AutoContext(K), !autoEqlIsCheap(K)); }