|
|
|
|
|
by mg
998 days ago
|
|
The nice aspect of "this ~> that" is that the meaning is simply "put this into that". And that it results in the shortest code. An alternative would be: b ~> c ~> d ~> e(%,4)
Slightly longer, but maybe easier to read. Also easier to handle, as you can remove the fourth part " ~> e(%,4)" without having to change the third part. |
|