This is an internal implementation file of the hash map. Users of the hash map should not rely on the contents of this file.
Note that some functions in this file (in particular, foldrM
, foldr
, toList
, replace
, and
erase
) are not tail-recursive. This is not a problem because they are only used internally by
HashMap
, where AssocList
is always small. Before making this API public, we would need to add
@[csimp]
lemmas for tail-recursive implementations.
File contents: Operations on associative lists
AssocList α β
is "the same as" List (α × β)
, but flattening the structure
leads to one fewer pointer indirection (in the current code generator).
- nil
{α : Type u}
{β : α → Type v}
: AssocList α β
Internal implementation detail of the hash map
- cons
{α : Type u}
{β : α → Type v}
(key : α)
(value : β key)
(tail : AssocList α β)
: AssocList α β
Internal implementation detail of the hash map
Instances For
Equations
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Internal implementation detail of the hash map
Equations
Instances For
Equations
Instances For
Internal implementation detail of the hash map