Greetings,
How do I emulate the "when" clause in ML for
pattern matching? In other words when a pattern is matched (from a list of
patterns of a function) and to enforce additional predicates I use guards,
but if the guard condition is not satisfied I want Haskell to get back
to trying the remaining patterns.
Thanks