Skip to content

Instantly share code, notes, and snippets.

@onlyshk
Created November 4, 2011 07:20
Show Gist options
  • Save onlyshk/1338842 to your computer and use it in GitHub Desktop.
Save onlyshk/1338842 to your computer and use it in GitHub Desktop.
Foldable
class Foldable t where
foldr :: (a -> b -> b) -> b -> [a] -> [b]
foldMap :: (Monoid m, Foldable t) => (a -> m) -> t a -> m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment