@kyay10 I think that your solution, chaining high-order infix functions, is the best you can do currently, but there is a lot of overhead.
I would like to see a way to write multi-part
functions without that overhead. For example a trifix
function that’s like infix but with three arguments and two names. The callsite looks like arg1 trifixFun1 arg2 trifixFun2 arg3
. The goal is to be equivalent sugar for trifixFun(arg1, arg2, arg3)