Y
Hacker News
new
|
ask
|
show
|
jobs
by
marchelzo
3729 days ago
With `[a] -> Maybe a`, it's not so bad if you use `catMaybes` from Data.Maybe.
map transform . catMaybes . map safeHead
1 comments
koloron
3729 days ago
Even better with mapMaybe:
map transform . mapMaybe safeHead
link