Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created August 19, 2015 11:56
Show Gist options
  • Select an option

  • Save shigemk2/55ed1a7ba58b88e20ca4 to your computer and use it in GitHub Desktop.

Select an option

Save shigemk2/55ed1a7ba58b88e20ca4 to your computer and use it in GitHub Desktop.
import Data.Monoid
-- newtypeにくるむ
-- この方法は面倒なので、orとかandとか使ったほうがいい
main = do
print $ getAny $ Any True `mappend` Any False
print $ getAny $ mempty `mappend` Any True
print $ getAny . mconcat . map Any $ [False, False, False, True]
print $ getAny $ mempty `mappend` mempty
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment