diff options
author | Marvin Borner | 2023-11-06 00:24:11 +0100 |
---|---|---|
committer | Marvin Borner | 2023-11-06 00:24:31 +0100 |
commit | 9d722a0b6138827de743f9fe4acbf3f2c1830bb0 (patch) | |
tree | 789b8df72f0f2cae2bb4009ddb93b914bf83eb2c /docs/wiki_src/coding/laziness.md | |
parent | 027fc0f91ae7bf64564091fbcec7694f5d53d8fe (diff) |
Started creating new docs with wiki
Diffstat (limited to 'docs/wiki_src/coding/laziness.md')
-rw-r--r-- | docs/wiki_src/coding/laziness.md | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/docs/wiki_src/coding/laziness.md b/docs/wiki_src/coding/laziness.md new file mode 100644 index 0000000..feec480 --- /dev/null +++ b/docs/wiki_src/coding/laziness.md @@ -0,0 +1,52 @@ +# Laziness + +Due to the call-by-need reduction order of bruijn, several operations +are lazily evaluated (automagically!). + +## Infinite lists + +You can use infinite list generators like `repeat`{.bruijn} or +`iterate`{.bruijn} to lazily interact with list elements. + +``` bruijn +:import std/List . + +:test (length (take (+3) (repeat (+4)))) ((+3)) +:test (take (+5) (iterate ++‣ (+0))) (((+0) : ((+1) : ((+2) : ((+3) : {}(+4)))))) +``` + +## Math + +``` bruijn +# power function +:test ((iterate (…⋅… (+2)) (+1)) !! (+3)) ((+8)) + +# prime numbers +primes nub ((…≠?… (+1)) ∘∘ gcd) (iterate ++‣ (+2)) ⧗ (List Number) + +:test (take (+4) primes) ((+2) : ((+3) : ((+5) : {}(+7)))) + +# fibonacci +fibs head <$> (iterate [~0 : (^0 + ~0)] ((+0) : (+1))) ⧗ (List Number) + +:test (take (+4) primes) ((+0) : ((+1) : ((+1) : {}(+2)))) +``` + +## Optimization + +Laziness can (in some cases) produce huge performance boosts. For +example: + +``` bruijn +# 11 seconds +:time (+10) ** (+500) + +# 0.1 seconds +:time ((+10) ** (+500)) =? (+400) +``` + +This works because a ternary number is just a list of trits which (in +this case) gets recursively generated by the `pow`{.bruijn} function. +The `eq?`{.bruijn} function just throws away the first argument if it's +already clear that the numbers can't be equal (in this case after the +first argument got bigger than `(+400)`{.bruijn}). |