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? * ,/ (1 2) (2 3) (3 4)* ┏━━━━━━━━━━━━━┓ ┃┏→━━━━━━━━━━┓┃ ┃┃1 2 2 3 3 4┃┃ ┃┗━━━━━━━━━━━┛┃ ┗∊━━━━━━━━━━━━┛ Regards, Elias
