Last active
May 9, 2022 11:50
-
-
Save llelf/fe5363941898c302a6967bd6028c6f10 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
what k4/k7 k9 example result | |
--------------------------------------------------------------------------------- | |
each-left a f\:b a f\:b (!3)*\:!2 (0 0;0 1;0 2) | |
each-right a f/:b a f/:b (!3)*/:!2 (0 0 0;0 1 2) | |
fold f/v f/v */6 7 42 | |
fold w/initial a f/v a f/v 7*/11 13 1001 | |
scan f\v f\v -\1 1 1 1 0 -1 | |
scan w/initial a f\v a f\v 3-\1 1 1 2 1 0 | |
fixpoint f/x f/:x (1+1%)/:1 1.618034 | |
fixpoint scan f\x f\:x 3 4 2 1\:0 0 3 1 4 | |
do-n n f/x (n;f)/:x (2;"ha",)/:"!" "haha!" | |
do-n scan n f\x (n;f)\:x (3;{x*x})\:2 2 4 16 256 | |
while c f/x (c;f)/:x (1e3>;2*)/:1 1024 | |
while scan c f\x (c;f)\:x (5 mod;2+)\:4 4 6 8 10 | |
e.g. flatten ,// ,//: ,//:((1;2 3);4) 1 2 3 4 | |
sv b/:v b/v 16/2 10 42 | |
vs b\:x b\x 2\42 1 0 1 0 1 0 | |
anujgoyal
commented
Oct 7, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment