diff options
author | Marvin Borner | 2022-08-31 17:13:04 +0200 |
---|---|---|
committer | Marvin Borner | 2022-08-31 17:13:04 +0200 |
commit | f52acf811f51657a16ca8514f01345187e722111 (patch) | |
tree | 881b8971928c0b1d8be8982fe27e6ced8a0c9187 /std/Combinator.bruijn | |
parent | 906fe10ab27f010f676c0c05d9b81abd15225c6a (diff) |
More functions
Diffstat (limited to 'std/Combinator.bruijn')
-rw-r--r-- | std/Combinator.bruijn | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/std/Combinator.bruijn b/std/Combinator.bruijn index ceb9c48..34f9631 100644 --- a/std/Combinator.bruijn +++ b/std/Combinator.bruijn @@ -7,20 +7,20 @@ a [[1 0]] …$… a -# bluebird combinator: function composition: (f . g) x = f (g x) +# bluebird combinator: function composition: (f ∘ g) x = f (g x) b [[[2 (1 0)]]] -….… b +…∘… b -# blackbird combinator: 2x function composition: (f .. g) x y = f (g x y) +# blackbird combinator: 2x function composition: (f ∘∘ g) x y = f (g x y) b' [[[[3 (2 1 0)]]]] -…..… b' +…∘∘… b' -# bunting combinator: 3x function composition: (f ... g) x y z = f (g x y z) +# bunting combinator: 3x function composition: (f ∘∘∘ g) x y z = f (g x y z) b'' [[[[[4 (3 2 1 0)]]]]] -…...… b'' +…∘∘∘… b'' # becard combinator b''' [[[[3 (2 (1 0))]]]] |