upper triangle question #83
-
do we need the jot? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
This is so that it becomes a stand-alone function. The entry could have said The entries are intentionally valid functions so they can be copied and named without needing manipulation. |
Beta Was this translation helpful? Give feedback.
This is so that it becomes a stand-alone function. The entry could have said
(∘.<⍨⍳)Jsinstead, but note that technically,(∘.<⍨⍳)5is not the same as∘.<⍨⍳5because the former derives a new function using the Atop construct while the latter is simply an inline expression where∘.<⍨and⍳are not connected in any way other than the flow of computation. APLcart's table is a bit inconsistent in that some functions consisting of two consecutive monadic functions are writtenf∘gwhile others are written(f g)― but both forms are of course valid.The entries are intentionally valid functions so they can be copied and named without needing manipulation.