LinearMapEntryBase struct

Defined in module std.linear_map (linear_map.l0).

Linear map implementation using linear search.

Note: This is not a hash map. Elements are stored in a vector, and lookups are done via linear search. Lookup can be done by key or by value, in O(n) time. Only efficient for very small datasets.

Fields

hash_key: int
hash_value: int