Skip to content

Instantly share code, notes, and snippets.

@zakky-dev
Created June 22, 2013 07:14
Show Gist options
  • Save zakky-dev/5836176 to your computer and use it in GitHub Desktop.
Save zakky-dev/5836176 to your computer and use it in GitHub Desktop.
head/tailをMaybeにしてみた
safeHead :: [a] -> Maybe a
safeHead [] = Nothing
safeHead (x:_) = Just x
safeTail :: [a] -> Maybe [a]
safeTail [] = Nothing
safeTail (_:xs) = Just xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment