diff options
author | Marvin Borner | 2024-08-06 01:53:19 +0200 |
---|---|---|
committer | Marvin Borner | 2024-08-06 01:53:19 +0200 |
commit | 0c3b464d3c73fcd1a6fde3f2f5882eddd5c79685 (patch) | |
tree | 6ae5ac53ca8c4feff7902b0df9d6c5c94bf3eb87 /std/List/Church.bruijn | |
parent | e2c3965f929556dda9f779c237f4ba96c8f6c542 (diff) |
Complex updates
Diffstat (limited to 'std/List/Church.bruijn')
-rw-r--r-- | std/List/Church.bruijn | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/std/List/Church.bruijn b/std/List/Church.bruijn index d8d7dc9..b45f5c5 100644 --- a/std/List/Church.bruijn +++ b/std/List/Church.bruijn @@ -511,16 +511,20 @@ cycle z [[rec]] ⧗ (List a) → (List a) :test (take (+6) (cycle "ab")) ("ababab") # returns a list with infinite-times previous (or start) value applied to a function -iterate z [[[rec]]] ⧗ (a → a) → a → (List a) - rec 0 : (2 1 (1 0)) +iterate [z [[rec]]] ⧗ (a → a) → a → (List a) + rec 0 : (1 (2 0)) :test (take (+5) (iterate ++‣ (+0))) (((+0) : ((+1) : ((+2) : ((+3) : {}(+4)))))) :test (take (+2) (iterate (%‣ ∘ dec) (+5))) (((+5) : {}(+4))) :test (take (+5) (iterate i (+4))) (take (+5) (repeat (+4))) :test (take (+0) (iterate ++‣ (+0))) (empty) -# TODO: performance -nth-iterate index ∘∘ iterate +# returns the nth element of infinite list iteration +# equivalent of index ∘∘ iterate +nth-iterate [z [[[rec]]]] ⧗ (a → a) → a → Number → a + rec =?0 1 (2 (3 1) --0) + +:test (nth-iterate ++‣ (+0) (+5)) ((+5)) # enumerate list enumerate zip (iterate ++‣ (+0)) ⧗ (List a) → (List (Pair Number a)) |