Equations
Instances For
Equations
- as.forIn init f = do let __do_lift ← Lean.RBNode.forIn.visit f as init match __do_lift with | ForInStep.done b => pure b | ForInStep.yield b => pure b
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.forIn.visit f Lean.RBNode.leaf x✝ = pure (ForInStep.yield x✝)
Instances For
Equations
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
- x✝³.balance1 x✝² x✝¹ x✝ = Lean.RBNode.node Lean.RBColor.black x✝³ x✝² x✝¹ x✝
Instances For
Equations
- One or more equations did not get rendered due to their size.
- x✝³.balance2 x✝² x✝¹ x✝ = Lean.RBNode.node Lean.RBColor.black x✝³ x✝² x✝¹ x✝
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.ins cmp Lean.RBNode.leaf x✝¹ x✝ = Lean.RBNode.node Lean.RBColor.red Lean.RBNode.leaf x✝¹ x✝ Lean.RBNode.leaf
Instances For
Equations
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
- (Lean.RBNode.node Lean.RBColor.red a kx vx b).balLeft x✝² x✝¹ x✝ = Lean.RBNode.node Lean.RBColor.red (Lean.RBNode.node Lean.RBColor.black a kx vx b) x✝² x✝¹ x✝
- x✝².balLeft x✝¹ x✝ (Lean.RBNode.node Lean.RBColor.black a ky vy b) = x✝².balance2 x✝¹ x✝ (Lean.RBNode.node Lean.RBColor.red a ky vy b)
- x✝³.balLeft x✝² x✝¹ x✝ = Lean.RBNode.node Lean.RBColor.red x✝³ x✝² x✝¹ x✝
Instances For
Equations
- One or more equations did not get rendered due to their size.
- l.balRight k v (Lean.RBNode.node Lean.RBColor.red lchild key val rchild) = Lean.RBNode.node Lean.RBColor.red l k v (Lean.RBNode.node Lean.RBColor.black lchild key val rchild)
- (Lean.RBNode.node Lean.RBColor.black a kx vx b).balRight k v r = (Lean.RBNode.node Lean.RBColor.red a kx vx b).balance1 k v r
- l.balRight k v r = Lean.RBNode.node Lean.RBColor.red l k v r
Instances For
The number of nodes in the tree.
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.leaf.appendTrees x✝ = x✝
- x✝.appendTrees Lean.RBNode.leaf = x✝
- x✝.appendTrees (Lean.RBNode.node Lean.RBColor.red b kx vx c) = Lean.RBNode.node Lean.RBColor.red (x✝.appendTrees b) kx vx c
- (Lean.RBNode.node Lean.RBColor.red a kx vx b).appendTrees x = Lean.RBNode.node Lean.RBColor.red a kx vx (b.appendTrees x)
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.del cmp x Lean.RBNode.leaf = Lean.RBNode.leaf
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.findCore cmp Lean.RBNode.leaf x✝ = none
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.find cmp Lean.RBNode.leaf x✝ = none
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.lowerBound cmp Lean.RBNode.leaf x✝¹ x✝ = x✝
Instances For
- leafWff {α : Type u} {β : α → Type v} {cmp : α → α → Ordering} : WellFormed cmp leaf
- insertWff {α : Type u} {β : α → Type v} {cmp : α → α → Ordering} {n n' : RBNode α β} {k : α} {v : β k} : WellFormed cmp n → n' = insert cmp n k v → WellFormed cmp n'
- eraseWff {α : Type u} {β : α → Type v} {cmp : α → α → Ordering} {n n' : RBNode α β} {k : α} : WellFormed cmp n → n' = erase cmp k n → WellFormed cmp n'
Instances For
Equations
- One or more equations did not get rendered due to their size.
- Lean.RBNode.mapM f Lean.RBNode.leaf = pure Lean.RBNode.leaf
Instances For
Equations
Instances For
Equations
- Lean.RBNode.instEmptyCollection = { emptyCollection := Lean.RBNode.leaf }
Equations
- Lean.RBMap α β cmp = { t : Lean.RBNode α fun (x : α) => β // Lean.RBNode.WellFormed cmp t }
Instances For
Instances For
Instances For
Equations
- Lean.RBMap.forM f t = Lean.RBMap.foldM (fun (x : PUnit) (k : α) (v : β) => f k v) PUnit.unit t
Instances For
Instances For
Returns a List
of the key/value pairs in order.
Equations
- Lean.RBMap.toList ⟨t, property⟩ = Lean.RBNode.revFold (fun (ps : List (α × β)) (k : α) (v : β) => (k, v) :: ps) [] t
Instances For
Returns an Array
of the key/value pairs in order.
Equations
- Lean.RBMap.toArray ⟨t, property⟩ = Lean.RBNode.fold (fun (ps : Array (α × β)) (k : α) (v : β) => ps.push (k, v)) #[] t
Instances For
Equations
- Lean.RBMap.instRepr = { reprPrec := fun (m : Lean.RBMap α β cmp) (prec : Nat) => Repr.addAppParen (Std.Format.text "Lean.rbmapOf " ++ repr m.toList) prec }
Equations
Instances For
Instances For
(lowerBound k) retrieves the kv pair of the largest key smaller than or equal to k
,
if it exists.
Instances For
Equations
- Lean.RBMap.fromList l cmp = List.foldl (fun (r : Lean.RBMap α β cmp) (p : α × β) => r.insert p.fst p.snd) (Lean.mkRBMap α β cmp) l
Instances For
Equations
- Lean.RBMap.fromArray l cmp = Array.foldl (fun (r : Lean.RBMap α β cmp) (p : α × β) => r.insert p.fst p.snd) (Lean.mkRBMap α β cmp) l
Instances For
Returns true if the given predicate is true for all items in the RBMap.
Instances For
Returns true if the given predicate is true for any item in the RBMap.
Instances For
Instances For
Merges the maps t₁
and t₂
, if a key a : α
exists in both,
then use mergeFn a b₁ b₂
to produce the new merged value.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Intersects the maps t₁
and t₂
using mergeFn a b₁ b₂
to produce the new value.
Equations
- One or more equations did not get rendered due to their size.
Instances For
filter f m
returns the RBMap
consisting of all
"key
/val
"-pairs in m
where f key val
returns true
.
Equations
- Lean.RBMap.filter f m = Lean.RBMap.fold (fun (r : Lean.RBMap α β cmp) (k : α) (v : β) => if f k v = true then r.insert k v else r) ∅ m
Instances For
filterMap f m
filters an RBMap
and simultaneously modifies the filtered values.
It takes a function f : α → β → Option γ
and applies f k v
to the value with key k
.
The resulting entries with non-none
value are collected to form the output RBMap
.
Equations
- Lean.RBMap.filterMap f m = Lean.RBMap.fold (fun (r : Lean.RBMap α γ cmp) (k : α) (v : β) => match f k v with | none => r | some b => r.insert k b) ∅ m