packages feed

bookhound-0.1.25.0: src/Bookhound/Utils/List.hs

module Bookhound.Utils.List where


headSafe :: [a] -> Maybe a
headSafe (x: _) = Just x
headSafe _      = Nothing