Add an alias function that takes the same parameters in the inverse order so that when a function is completely definied by a match clause, it can be done more concisely:
Instead of:
const getValueName = (number) => match (number) (
(v= 1) => "one",
(v= 2) => "two"
)
We should be able to do:
const getValueName = matching (
(v= 1) => "one",
(v= 2) => "two"
)