|
|
|
|
|
by Pompidou
558 days ago
|
|
No.
In APL deriverd array programming languages, verbs (or functions) are monadic or dyadic : they accept only one or two arguments : In '1 + 1', + is a dyadic operator, while in 'exp 5', exp is monadic. In J, and in APL I guess, left arg is usually understood as 'control data', while right arg is the data upon which calculation is done. Left argument is usually left unchanged after calculations. In this way, is it possible to create multi-arguments verbs, by placing boxed args on the left of the verb. |
|