Equations
- vect_cons = Lean.ParserDescr.trailingNode `vect_cons 67 68 (Lean.ParserDescr.binary `andthen (Lean.ParserDescr.symbol " :: ") (Lean.ParserDescr.cat `term 67))
Instances For
def
Vect.induction
{motive : (n : Nat) → (A : Sort u1) → Vect n A → Sort u2}
{A : Sort u1}
(nil : motive 0 A nil)
(cons : {n : Nat} → {tl : Vect n A} → (hd : A) → motive n A tl → motive (n + 1) A (hd :: tl))
{n : Nat}
(v : Vect n A)
:
motive n A v
Equations
- One or more equations did not get rendered due to their size.
- Vect.induction nil cons v = ⋯.mpr nil