Theorems · Theorem · combinatorics
List.Vector.map_mapAccumr
∀ {α : Type u_1} {β : Type u_2} {γ : Type u_3} {σ₂ : Type u_7} {n : ℕ} (xs : List.Vector α n) (f₂ : α → σ₂ → σ₂ × β)
{s : σ₂} (f₁ : β → γ),
List.Vector.map f₁ (List.Vector.mapAccumr f₂ xs s).2 =
(List.Vector.mapAccumr
(fun x s =>
have r := f₂ x s;
(r.1, f₁ r.2))
xs s).2- Defined in
- Mathlib.Data.Vector.MapLemmas
- Cited by
- 0 results in Mathlib
- Foundations
- Depth 19 from the axioms · uses propext
Around this declaration
Dashed lines are statement dependencies; solid lines are citations in proofs.
Cites8
Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.
- List.Vectorstatement and proof · cited by 270
- List.Vector.nilproof · cited by 68
- List.Vector.snocproof · cited by 30
- List.Vector.mapstatement and proof · cited by 25
- List.Vector.mapAccumrstatement and proof · cited by 18
- List.Vector.mapAccumr_snocproof · cited by 11
- List.Vector.map_snocproof · cited by 7
- List.Vector.revInductionOnproof · cited by 6
Cited by0
Results whose statement or proof uses this declaration.
Nothing cites this yet.