mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 10:02:03 +03:00
12 lines
247 B
Idris
12 lines
247 B
Idris
|
|
%default partial
|
|
|
|
data Vect : Nat -> Type -> Type where
|
|
Nil : Vect Z a
|
|
(::) : a -> Vect k a -> Vect (S k) a
|
|
|
|
zip : Vect n a -> Vect n b -> Vect n (a, b)
|
|
zip [] Z impossible
|
|
zip [] [] = Nil
|
|
zip (x :: xs) (y :: ys) = (x, y) :: zip xs ys
|