I have a little question. I have a function argument like
f (a,b,c,d,e)
Is there a way to refer to the entire set (a, b, c, d, e) by some alias?
It looks like you need as a template
f o@ (a,b,c,d,e) = ...