Hi Elias,
yes, I believe so.
The ISO standard, chapter 9.2.1 Reduction, allows
2 different variants for reduction called the
Enclose-Reduction-Style (aka. APL2 style) and the Insert-Reduction-Style
(aka. Sharp/J style).
GNU APL use
The following gives a very obvious result:
* (1 2),(2 3),(3 4)*
┏→━━┓
┃1 2 2 3 3 4┃
┗━━━┛
Assuming that the / operator splices the function between each value, you'd
expect the following to yield the same result, but it becomes boxed. Is
there an explanation for this?
*