Skip to content

Instantly share code, notes, and snippets.

@akhileshs
Created February 13, 2016 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akhileshs/c828e3e21f5930d62475 to your computer and use it in GitHub Desktop.
Save akhileshs/c828e3e21f5930d62475 to your computer and use it in GitHub Desktop.
sequence :: Monad m => [m a] -> m [a]
sequence = foldr mcons (return [])
where mcons p q = p >>= \x -> q >>= \y -> return (x : y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment