The following pattern appears very frequently in Haskell code. Is there a shorter way to write it?
if pred x
then Just x
else Nothing
|
The following pattern appears very frequently in Haskell code. Is there a shorter way to write it?
| ||||
feedback
|
|
You're looking for
| |||
|
feedback
|
|
Hm... You are looking for a combinator that takes an
I doubt that you can actually find your function somewhere. But why not define it by yourself?
| |||||||||||||
feedback
|
|
use
from Data.Bool.HT. HTH Chris | |||||||||||||
feedback
|
|
You can use
This is such a generally useful behavior that I've even defined
| |||||||||
feedback
|
Given the above definition, you can simply write:
Of course this is no different than Daniel Wagner's Some ghci, just for fun
If you couldn't tell, this isn't a very serious answer. The others are a bit more insightful, but I couldn't resist the tongue-in-cheek response to "make this code shorter". | |||
|
feedback
|
|
Usually I'm a big fan of very generic code, but I actually find this exact function useful often enough, specialized to The name I use for it is
Basically, stuff where some sort of element-wise filtering or checking needs to be done in a compound expression, so For the specialized version like this, there really isn't much you can do to make it shorter. It's already pretty simple. There's a fine line between being concise, and just golfing your code for character count, and for something this simple I wouldn't really worry about trying to "improve" it... | |||||||
feedback
|