Type Function AutoHashMap [src]

Prototype

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

Parameters

K: typeV: type

Source

pub fn AutoHashMap(comptime K: type, comptime V: type) type { return HashMap(K, V, AutoContext(K), default_max_load_percentage); }