Kind/book/Vector.cons.kind2
2024-03-09 17:59:39 -03:00

4 lines
168 B
Plaintext

Vector.cons
: ∀(T: *) ∀(len: Nat) ∀(head: T) ∀(tail: (Vector T len)) (Vector T (Nat.succ len))
= λT λlen λhead λtail ~λP λcons λnil (cons len head tail)