all-about-monads icon indicating copy to clipboard operation
all-about-monads copied to clipboard

Attempt to port All About Monads to HaskellWiki

Results 13 all-about-monads issues
Sort by recently updated
recently updated
newest added

Changed all instances of the "generic" masculine pronoun "he" into "they". When "He" Doesn’t Mean You: Gender-exclusive Language As Ostracism -- Personality and Social Psychology Bulletin, 37, 757-769. http://scholarworks.umass.edu/cgi/viewcontent.cgi?article=1288&context=theses

[Reader](https://wiki.haskell.org/All_About_Monads#The_Reader_monad) has **Reader [(String,Value) a]** but should have **Reader [(String,Value)] a**.

https://github.com/dag/all-about-monads/blob/master/html/identitymonad.html#L37 : Identity x >>= f == (f x), as is correctly stated on L74.

https://github.com/dag/all-about-monads/blob/master/html/laws.html#L262 : s/algabraic/algebraic

1. Fixed compilation issue with transform.hs using pandoc 1.13 2. Fixed broken imports in exampleX.hs files 3. Updated the .html to reflect the example code change in #2 above

The original code misses a type variable resulting in the compilation error. This patch introduces the type variable.