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

Even better with mapMaybe:

    map transform . mapMaybe safeHead