aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/List.bruijn
diff options
context:
space:
mode:
Diffstat (limited to 'std/List.bruijn')
-rw-r--r--std/List.bruijn14
1 files changed, 14 insertions, 0 deletions
diff --git a/std/List.bruijn b/std/List.bruijn
index 12e85c8..f35ec6f 100644
--- a/std/List.bruijn
+++ b/std/List.bruijn
@@ -56,6 +56,20 @@ length z [[[rec]]] (+0) ⧗ (List a) → Number
:test (∀((+1) : {}(+2))) ((+2))
:test (∀empty) ((+0))
+# applies each element of a list to a function
+# TODO: Fix variadicity in signature
+apply z [[[rec]]] ⧗ (a → b) → (List a) → b
+ rec ∅?0 case-end case-app
+ case-app 2 (1 ^0) ~0
+ case-end 1
+
+:test (apply …+… ((+1) : {}(+2))) ((+3))
+
+# applies each element of the tail to the head
+eval [apply ^0 ~0] ⧗ (Pair (a → b) (List a)) → b
+
+:test (eval (…+… : ((+1) : {}(+2)))) ((+3))
+
# returns the element at index in list
index z [[[rec]]] ⧗ (List a) → Number → a
rec ∅?0 case-end case-index