@[specialize #[]]
Equations
Instances For
@[specialize #[]]
Nat.foldRev
evaluates f
on the numbers up to n
exclusive, in decreasing order:
Nat.foldRev f 3 init = f 0 <| f 1 <| f 2 <| init
Equations
- Nat.foldRev 0 f x✝ = x✝
- n.succ.foldRev f x✝ = n.foldRev (fun (i : Nat) (h : i < n) => f i ⋯) (f n ⋯ x✝)
Instances For
@[specialize #[]]
Equations
Instances For
@[specialize #[]]
Equations
Instances For
csimp theorems #
@[simp]
theorem
Nat.fold_eq_finRange_foldl
{α : Type u}
(n : Nat)
(f : (i : Nat) → i < n → α → α)
(init : α)
:
n.fold f init = List.foldl
(fun (acc : α) (x : Fin n) =>
match x with
| ⟨i, h⟩ => f i h acc)
init (List.finRange n)
@[simp]
theorem
Nat.foldRev_eq_finRange_foldr
{α : Type u}
(n : Nat)
(f : (i : Nat) → i < n → α → α)
(init : α)
:
n.foldRev f init = List.foldr
(fun (x : Fin n) (acc : α) =>
match x with
| ⟨i, h⟩ => f i h acc)
init (List.finRange n)
@[inline]
def
Prod.foldI
{α : Type u}
(i : Nat × Nat)
(f : (j : Nat) → i.fst ≤ j → j < i.snd → α → α)
(a : α)
:
α
(start, stop).foldI f a
evaluates f
on all the numbers
from start
(inclusive) to stop
(exclusive) in increasing order:
(5, 8).foldI f init = init |> f 5 |> f 6 |> f 7