cultivations icon indicating copy to clipboard operation
cultivations copied to clipboard

APL Orchard Cultivations: https://xpqz.github.io/cultivations/

Results 3 cultivations issues
Sort by recently updated
recently updated
newest added

[book.pdf](https://github.com/xpqz/cultivations/files/14499675/book.pdf) Created a PDF of the entire book for download if people need it.

``` So if you have a vector like 1 2 3 and want to "fill" a simple scalar with that data, you can do (0⍴0)⍴1 2 3 And yes, ⍬...

a .NET collection example for monadic `⌷`: ```apl ⎕USING←'System.Collections' ba←⎕NEW BitArray(⊂1 0 1 1 0) ba System.Collections.BitArray ⌷ba 1 0 1 1 0 ``` Note: doesn't seem to work on...