What is the recommended way of testing several boolean expressions ?
I've been using this:
case () of () | test1 -> value1
| test2 -> value2
| otherwise -> value3
Is this good style ? is there a prettier way ?
|
What is the recommended way of testing several boolean expressions ? I've been using this:
Is this good style ? is there a prettier way ? |
|||
|
|
|
This pattern can be simulated with a function — for instance,
I can’t call it particularly beautiful, though. In next GHC we will be able to use multi-way if, hooray! (just found it out)
|
||||
|
|
|
This is an idiom I see pretty often since Haskell lacks a proper syntax for a case without matching. To make my intentions clearer, I usually intentionally match
|
|||
|
|
|
You can also pattern match on your series of expressions inside a tuple
|
|||
|