Documentation

Lean.Data.NameMap

def Lean.NameMap.insert {α : Type} (m : NameMap α) (n : Name) (a : α) :
Equations
def Lean.NameMap.contains {α : Type} (m : NameMap α) (n : Name) :
Equations
def Lean.NameMap.find? {α : Type} (m : NameMap α) (n : Name) :
Equations
def Lean.NameMap.filter {α : Type} (f : NameαBool) (m : NameMap α) :

filter f m returns the NameMap consisting of all "key/val"-pairs in m where f key val returns true.

Equations
def Lean.NameMap.filterMap {α β : Type} (f : NameαOption β) (m : NameMap α) :

filterMap f m filters an NameMap and simultaneously modifies the filtered values.

It takes a function f : Name → α → Option β and applies f name to the value with key name. The resulting entries with non-none value are collected to form the output NameMap.

Equations

The union of two NameSets.

Equations

filter f s returns the NameSet consisting of all x in s where f x returns true.

Equations
@[reducible, inline]
Equations
@[reducible, inline]
Equations

filter f s returns the NameHashSet consisting of all x in s where f x returns true.

Equations
Equations
Equations