Instances For
Equations
- Lean.instInhabitedRBTree = { default := Lean.RBMap.empty }
@[inline]
Instances For
instance
Lean.instEmptyCollectionRBTree
(α : Type u)
(cmp : α → α → Ordering)
:
EmptyCollection (RBTree α cmp)
@[inline]
Equations
Instances For
@[inline]
def
Lean.RBTree.fold
{α : Type u}
{β : Type v}
{cmp : α → α → Ordering}
(f : β → α → β)
(init : β)
(t : RBTree α cmp)
:
β
Equations
- Lean.RBTree.fold f init t = Lean.RBMap.fold (fun (r : β) (a : α) (x : Unit) => f r a) init t
Instances For
@[inline]
def
Lean.RBTree.revFold
{α : Type u}
{β : Type v}
{cmp : α → α → Ordering}
(f : β → α → β)
(init : β)
(t : RBTree α cmp)
:
β
Equations
- Lean.RBTree.revFold f init t = Lean.RBMap.revFold (fun (r : β) (a : α) (x : Unit) => f r a) init t
Instances For
@[inline]
def
Lean.RBTree.foldM
{α : Type u}
{β : Type v}
{cmp : α → α → Ordering}
{m : Type v → Type w}
[Monad m]
(f : β → α → m β)
(init : β)
(t : RBTree α cmp)
:
m β
Equations
- Lean.RBTree.foldM f init t = Lean.RBMap.foldM (fun (r : β) (a : α) (x : Unit) => f r a) init t
Instances For
Equations
- Lean.RBTree.instForIn = { forIn := fun {β : Type ?u.32} [Monad m] => Lean.RBTree.forIn }
@[inline]
Instances For
Equations
- Lean.RBTree.instRepr = { reprPrec := fun (t : Lean.RBTree α cmp) (prec : Nat) => Repr.addAppParen (Std.Format.text "Lean.rbtreeOf " ++ repr t.toList) prec }
@[inline]
def
Lean.RBTree.insert
{α : Type u}
{cmp : α → α → Ordering}
(t : RBTree α cmp)
(a : α)
:
RBTree α cmp
Equations
Instances For
@[inline]
def
Lean.RBTree.erase
{α : Type u}
{cmp : α → α → Ordering}
(t : RBTree α cmp)
(a : α)
:
RBTree α cmp
Equations
Instances For
@[specialize #[]]