O(1)
(apply
is O(|l|)
). Convert a List α
into a DList α
.
Equations
- Batteries.DList.ofList l = { apply := fun (x : List α) => l ++ x, invariant := ⋯ }
Instances For
O(1)
(apply
is O(1)
). Return an empty DList α
.
Equations
- Batteries.DList.empty = { apply := id, invariant := ⋯ }
Instances For
Equations
- Batteries.DList.instEmptyCollection = { emptyCollection := Batteries.DList.empty }
Equations
- Batteries.DList.instInhabited = { default := Batteries.DList.empty }
O(1)
(apply
is O(1)
). A DList α
corresponding to the list [a]
.
Equations
- Batteries.DList.singleton a = { apply := fun (t : List α) => a :: t, invariant := ⋯ }
Instances For
O(1)
(apply
is O(1)
). Prepend a
on a DList α
.
Equations
- Batteries.DList.cons x✝ { apply := f, invariant := h } = { apply := fun (t : List α) => x✝ :: f t, invariant := ⋯ }
Instances For
Equations
- Batteries.DList.instAppend = { append := Batteries.DList.append }
Convert a lazily-evaluated List
to a DList
Equations
- Batteries.DList.ofThunk l = { apply := fun (xs : List α) => l.get ++ xs, invariant := ⋯ }
Instances For
@[deprecated Batteries.DList.ofThunk (since := "2024-10-16")]
Alias of Batteries.DList.ofThunk
.
Convert a lazily-evaluated List
to a DList
Instances For
Concatenates a list of difference lists to form a single difference list. Similar to
List.join
.