AssocList α β
is "the same as" List (α × β)
, but flattening the structure
leads to one fewer pointer indirection (in the current code generator).
It is mainly intended as a component of HashMap
, but it can also be used as a plain
key-value map.
- nil
{α : Type u}
{β : Type v}
: AssocList α β
An empty list
- cons
{α : Type u}
{β : Type v}
(key : α)
(value : β)
(tail : AssocList α β)
: AssocList α β
Add a
key, value
pair to the list
Instances For
Equations
- Batteries.instInhabitedAssocList = { default := Batteries.AssocList.nil }
Equations
- Batteries.AssocList.instEmptyCollection = { emptyCollection := Batteries.AssocList.nil }
O(1)
. Is the list empty?
Instances For
O(n)
. Fold a function over the list, from head to tail.
Instances For
O(n)
. Map a function f
over the keys of the list.
Equations
Instances For
O(n)
. Map a function f
over the values of the list.
Equations
Instances For
O(n)
. Returns the first entry in the list whose entry satisfies p
.
Equations
Instances For
O(n)
. Returns the first entry in the list whose key is equal to a
.
Equations
Instances For
O(n)
. Returns the first value in the list whose key is equal to a
.
Equations
Instances For
O(n)
. Returns true if any entry in the list satisfies p
.
Equations
Instances For
O(n)
. Returns true if every entry in the list satisfies p
.
Equations
Instances For
O(n)
. Returns true if there is an element in the list whose key is equal to a
.
Equations
Instances For
O(n)
. Replace the first entry in the list
with key equal to a
to have key a
and value b
.
Equations
Instances For
O(n)
. Remove the first entry in the list with key equal to a
.
Equations
Instances For
O(n)
. Replace the first entry a', b
in the list
with key equal to a
to have key a
and value f a' b
.
Equations
Instances For
The implementation of ForIn
, which enables for (k, v) in aList do ...
notation.
Equations
Instances For
Equations
- Batteries.AssocList.instForInProd = { forIn := fun {β_1 : Type ?u.31} [Monad m] => Batteries.AssocList.forIn }
Equations
- Batteries.AssocList.instToStream = { toStream := fun (x : Batteries.AssocList α β) => x }
Equations
- Batteries.AssocList.instStreamProd = { next? := Batteries.AssocList.pop? }
Converts a list into an AssocList
. This is the inverse function to AssocList.toList
.
Equations
Instances For
Implementation of ==
on AssocList
.
Equations
- Batteries.AssocList.nil.beq Batteries.AssocList.nil = true
- (Batteries.AssocList.cons key value tail).beq Batteries.AssocList.nil = false
- Batteries.AssocList.nil.beq (Batteries.AssocList.cons key value tail) = false
- (Batteries.AssocList.cons a b t).beq (Batteries.AssocList.cons a' b' t') = (a == a' && b == b' && t.beq t')
Instances For
Boolean equality for AssocList
.
(This relation cares about the ordering of the key-value pairs.)
Equations
- Batteries.AssocList.instBEq = { beq := Batteries.AssocList.beq }