Documentation

Lean.Meta.Iterator

structure Lean.Meta.Iterator (α : Type) :

Provides an iterface for iterating over values that are bundled with the Meta state they are valid in.

Convert a list into an iterator with the current state.

Equations
  • One or more equations did not get rendered due to their size.

Map and filter results of iterator and returning only those values returned by f.

Equations

Find the first value in the iterator while resetting state or call failure if empty.

Equations
def Lean.Meta.Iterator.firstM {α : Type} {β : Type} (L : Lean.Meta.Iterator α) (f : αLean.MetaM (Option β)) :

Return the first value returned by the iterator that f succeeds on.

Equations