Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created August 19, 2015 12:33
Show Gist options
  • Select an option

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

Select an option

Save shigemk2/cff84195c95afe06f444 to your computer and use it in GitHub Desktop.
import qualified Data.Foldable as F
main = do
print $ foldr (*) 1 [1,2,3]
print $ F.foldr (*) 1 [1,2,3]
print $ F.foldl (+) 2 (Just 9)
print $ F.foldr (||) False (Just True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment