Documentation

Std.Data.DHashMap.Internal.AssocList.Iterator

Iterators on associative lists #

@[unbox]
structure Std.DHashMap.Internal.AssocList.AssocListIterator (α : Type u) (β : αType v) :
Type (max u v)

Internal implementation detail of the hash map

Instances For
    theorem Std.DHashMap.Internal.AssocList.AssocListIterator.ext_iff {α : Type u} {β : αType v} {x y : AssocListIterator α β} :
    x = y x.l = y.l
    theorem Std.DHashMap.Internal.AssocList.AssocListIterator.ext {α : Type u} {β : αType v} {x y : AssocListIterator α β} (l : x.l = y.l) :
    x = y
    Equations
    • One or more equations did not get rendered due to their size.
    def Std.DHashMap.Internal.AssocList.iter {α : Type u} {β : αType v} (l : AssocList α β) :
    Iter ((a : α) × β a)

    Internal implementation detail of the hash map. Returns a finite iterator on an associative list.

    Equations
    Instances For