mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-01 09:49:24 +03:00
498421a236
This has caught a couple of things in the Idris 2 code base itself. Some tests needed partial annotations too.
20 lines
430 B
Idris
20 lines
430 B
Idris
%default partial
|
|
|
|
data Vect : Nat -> Type -> Type where
|
|
Nil : Vect Z a
|
|
(::) : a -> Vect k a -> Vect (S k) a
|
|
|
|
data Fin : Nat -> Type where
|
|
FZ : Fin (S k)
|
|
FS : Fin k -> Fin (S k)
|
|
|
|
lookup : Fin n -> Vect n a -> a
|
|
lookup FZ (x :: xs) = x
|
|
lookup (FS k) (x :: xs) = lookup k xs
|
|
|
|
lookup' : Fin n -> Vect n a -> a
|
|
lookup' (FS k) (x :: xs) = lookup' k xs
|
|
|
|
lookup'' : Fin n -> Vect n a -> a
|
|
lookup'' n xs = lookup' n xs
|