1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 01:52:11 +03:00
juvix/tests/positive/StdlibList/Data/List.mjuvix
2022-02-24 00:31:21 +01:00

97 lines
2.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module Data.List;
import Data.Bool;
open Data.Bool;
-- infixr 5 ∷; waiting for implicit arguments
inductive List (a : Type) {
nil : List a;
∷ : a → List a → List a;
};
foldr : (a : Type) → (b : Type) → (a → b → b) → b → List a → b;
foldr _ _ _ z (nil _) ≔ z;
foldr a b f z (∷ _ h hs) ≔ f h (foldr a b f z hs);
foldl : (a : Type) → (b : Type) → (b → a → b) → b → List a → b;
foldl a b f z (nil _) ≔ z ;
foldl a b f z (∷ _ h hs) ≔ foldl a b f (f z h) hs;
map : (a : Type) → (b : Type) → (a → b) → List a → List b;
map _ b f (nil _) ≔ nil b;
map a b f (∷ _ h hs) ≔ ∷ a (f h) (map a b f hs);
filter : (a : Type) → (a → Bool) → List a → List a;
filter a f (nil _) ≔ nil a;
filter a f (∷ _ h hs) ≔ match f h {
true ↦ ∷ a h (filter a f hs);
false ↦ filter a f hs;
};
import Data.Nat;
open Data.Nat;
length : (a : Type) → List a → ;
length _ (nil _) ≔ zero;
length a (∷ _ _ l) ≔ suc (length a l);
reverse : (a : Type) → List a → List a;
reverse a l ≔ rev l (nil a)
where {
rev : List a → List a → List a;
rev (nil _) a ≔ a;
rev (∷ _ x xs) a ≔ rev xs (∷ a x a)
};
replicate : (a : Type) → → a → List a;
replicate a zero _ ≔ nil a;
replicate a (suc n) x ≔ ∷ a x (replicate a n x);
take : (a : Type) → → List a → List a;
take a (suc n) (∷ _ x xs) ≔ ∷ a x (take a n xs);
take a _ _ ≔ nil a;
import Data.Ord;
open Data.Ord;
import Data.Product;
open Data.Product;
splitAt : (a : Type) → → List a → List a;
splitAt a _ (nil _) ≔ nil a , nil a;
splitAt a zero xs ≔ , (List a) (List a) (nil a) xs;
splitAt a (suc zero) (∷ _ x xs) ≔ , (List a) (List a) (∷ a x (nil a)) xs;
splitAt a (suc (suc m)) (∷ _ x xs) ≔ match splitAt a m xs {
(, la _ xs' xs'') ↦ , la la (∷ a x xs') xs'';
};
merge : (a : Type) → (a → a → Ordering) → List a → List a → List a;
merge a cmp (∷ _ x xs) (∷ _ y ys) ≔ match cmp x y {
LT ↦ ∷ a x (merge a cmp xs (∷ a y ys));
_ ↦ ∷ a y (merge a cmp (∷ a x xs) ys);
};
merge _ _ (nil _) ys ≔ ys;
merge _ _ xs (nil _) ≔ xs;
-- infixr 5 ++; waiting for implicit arguments
++ : (a : Type) → List a → List a → List a;
++ a (nil _) ys ≔ ys;
++ a (∷ _ x xs) ys ≔ ∷ a x (++ a xs ys);
quickSort : (a : Type) → (a → a → Ordering) → List a → List a;
quickSort a _ (nil _) ≔ nil a;
quickSort a _ (∷ _ x (nil _)) ≔ ∷ a x (nil a);
quickSort a cmp (∷ _ x ys) ≔
++ a (quickSort a (filter a ltx) ys)
(++ a (∷ a x (nil a)) (quickSort a (filter a gex) ys))
where {
ltx : a → Bool;
ltx y ≔ match cmp y x {
LT ↦ true;
_ ↦ false;
};
gex : a → Bool;
gex y ≔ not (ltx y)
};
end;