Hi, is there a possibility to match in a function definition do some subset of a touple and still get get complete touple in the method ?
What I would like to do is something like this:
myfun({ foo, Bar }: Var) -> otherfunction(Var, stuff).
instead of:
myfun({ foo, Bar }) -> otherfunction({ foo, Bar }, stuff).
I hope this is clear enough.
Thanks.