Instances For
def
Lean.HashSetBucket.update
{α : Type u}
(data : HashSetBucket α)
(i : USize)
(d : List α)
(h : i.toNat < data.val.size)
:
Equations
- data.update i d h = ⟨data.val.uset i d h, ⋯⟩
Instances For
@[deprecated Std.HashSet.Raw (since := "2024-08-08")]
- size : Nat
- buckets : HashSetBucket α
Instances For
@[deprecated Std.HashSet.Raw.empty (since := "2024-08-08")]
Equations
- Lean.mkHashSetImp capacity = { size := 0, buckets := ⟨mkArray (Nat.nextPowerOfTwo (capacity * 4 / 3)) [], ⋯⟩ }
Instances For
@[inline]
def
Lean.HashSetImp.reinsertAux
{α : Type u}
(hashFn : α → UInt64)
(data : HashSetBucket α)
(a : α)
:
Equations
Instances For
@[inline]
def
Lean.HashSetImp.foldBucketsM
{α : Type u}
{δ : Type w}
{m : Type w → Type w}
[Monad m]
(data : HashSetBucket α)
(d : δ)
(f : δ → α → m δ)
:
m δ
Equations
Instances For
@[inline]
def
Lean.HashSetImp.foldBuckets
{α : Type u}
{δ : Type w}
(data : HashSetBucket α)
(d : δ)
(f : δ → α → δ)
:
δ
Instances For
@[inline]
def
Lean.HashSetImp.foldM
{α : Type u}
{δ : Type w}
{m : Type w → Type w}
[Monad m]
(f : δ → α → m δ)
(d : δ)
(h : HashSetImp α)
:
m δ
Instances For
@[inline]
Instances For
@[inline]
def
Lean.HashSetImp.forBucketsM
{α : Type u}
{m : Type w → Type w}
[Monad m]
(data : HashSetBucket α)
(f : α → m PUnit)
:
m PUnit
Instances For
@[inline]
def
Lean.HashSetImp.forM
{α : Type u}
{m : Type w → Type w}
[Monad m]
(f : α → m PUnit)
(h : HashSetImp α)
:
m PUnit
Instances For
Equations
- { size := size, buckets := buckets }.find? a = match Lean.HashSetImp.mkIdx✝ (hash a) ⋯ with | ⟨i, h⟩ => List.find? (fun (a' : α) => a == a') buckets.val[i]
Instances For
Equations
Instances For
@[irreducible]
def
Lean.HashSetImp.moveEntries
{α : Type u}
[Hashable α]
(i : Nat)
(source : Array (List α))
(target : HashSetBucket α)
:
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
- mkWff {α : Type u} [BEq α] [Hashable α] (n : Nat) : (mkHashSetImp n).WellFormed
- insertWff {α : Type u} [BEq α] [Hashable α] (m : HashSetImp α) (a : α) : m.WellFormed → (m.insert a).WellFormed
- eraseWff {α : Type u} [BEq α] [Hashable α] (m : HashSetImp α) (a : α) : m.WellFormed → (m.erase a).WellFormed
Instances For
@[deprecated Std.HashSet (since := "2024-08-08")]
Instances For
@[deprecated Std.HashSet.empty (since := "2024-08-08")]
Instances For
@[inline, deprecated Std.HashSet.empty (since := "2024-08-08")]
Equations
Instances For
Equations
- Lean.HashSet.instInhabited = { default := Lean.mkHashSet }
Equations
- Lean.HashSet.instEmptyCollection = { emptyCollection := Lean.mkHashSet }
@[inline]
Instances For
instance
Lean.HashSet.instForM
{α : Type u}
{x✝ : BEq α}
{x✝¹ : Hashable α}
{m : Type u_1 → Type u_1}
:
Equations
- Lean.HashSet.instForM = { forM := fun [Monad m] => Lean.HashSet.forM }
instance
Lean.HashSet.instForIn
{α : Type u}
{x✝ : BEq α}
{x✝¹ : Hashable α}
{m : Type (max u_1 u_2) → Type u_1}
:
Equations
- Lean.HashSet.instForIn = { forIn := fun {β : Type (max ?u.36 ?u.35)} [Monad m] => ForM.forIn }
@[inline]
Instances For
Instances For
@[inline]
O(|t|)
amortized. Merge two HashSet
s.
Equations
- s.merge t = Lean.HashSet.fold (fun (s : Lean.HashSet α) (a : α) => s.insert a) s t