aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/List/Church.bruijn
diff options
context:
space:
mode:
authorMarvin Borner2024-10-27 01:00:38 +0200
committerMarvin Borner2024-10-27 01:00:38 +0200
commitc6e39268be197a4eaccc0187271764a646017715 (patch)
tree7d15737e481be8a247f657121e9926938a6fdbf2 /std/List/Church.bruijn
parent10e46668751765c2981a07da3bc9411093db2bee (diff)
Refactored comparisons and sets
Diffstat (limited to 'std/List/Church.bruijn')
-rw-r--r--std/List/Church.bruijn10
1 files changed, 6 insertions, 4 deletions
diff --git a/std/List/Church.bruijn b/std/List/Church.bruijn
index c8d5d29..b48e7c8 100644
--- a/std/List/Church.bruijn
+++ b/std/List/Church.bruijn
@@ -421,13 +421,15 @@ eq? ⋀?‣ ∘∘∘ zip-with ⧗ (a → a → Boolean) → (List a) → Boolea
:test (eq? …=?… empty empty) (true)
# returns eq, lt, gt depending on comparison of two lists and comparison function
-compare-case z [[[[[[[rec]]]]]]] ⧗ (a → a → Boolean) → c → d → e → (List a) → (List a) → Boolean
- rec ∅?1 (∅?0 4 3) (∅?0 2 go)
- go [=?0 (7 6 5 4 3 ~2 ~1) 0] (5 ^1 ^0)
+compare-case' z [[[[[[[rec]]]]]]] ⧗ Compare → a → b → c → (List a) → (List a) → d
+ rec ∅?1 (∅?0 4 2) (∅?0 3 (5 eq gt lt ^1 ^0))
+ eq 6 5 4 3 2 ~1 ~0
+ gt 3
+ lt 2
# returns 1 if a>b, -1 if a<b and 0 if a=b
# also: spaceship operator
-compare [compare-case 0 (+0) (+1) (-1)] ⧗ (a → a → Boolean) → Binary → Binary → Number
+compare' [compare-case' 0 (+0) (+1) (-1)] ⧗ Compare → Binary → Binary → Number
# returns true if list is prefix of other list
prefix? z [[[[rec]]]] ⧗ (a → a → Boolean) → (List a) → (List a) → Boolean