mtl 1.1.0.1 → 1.1.0.2
raw patch · 17 files changed
+38/−13 lines, 17 filesnew-uploader
Files
- Control/Monad/Error.hs +1/−0
- Control/Monad/Identity.hs +1/−1
- Control/Monad/RWS.hs +1/−1
- Control/Monad/RWS/Class.hs +1/−1
- Control/Monad/RWS/Lazy.hs +1/−1
- Control/Monad/RWS/Strict.hs +1/−1
- Control/Monad/Reader.hs +2/−1
- Control/Monad/Reader/Class.hs +1/−1
- Control/Monad/State.hs +1/−1
- Control/Monad/State/Class.hs +1/−1
- Control/Monad/State/Lazy.hs +1/−1
- Control/Monad/State/Strict.hs +1/−1
- Control/Monad/Trans.hs +1/−1
- Makefile.inc +7/−0
- Makefile.nhc98 +12/−0
- mtl.cabal +1/−1
- prologue.txt +4/−0
Control/Monad/Error.hs view
@@ -1,4 +1,5 @@ {-# OPTIONS -fallow-undecidable-instances #-}+{-# OPTIONS_GHC -fno-warn-orphans #-} -- Temporary, I hope. SLPJ Aug08 -- Needed for the same reasons as in Reader, State etc {- |
Control/Monad/Identity.hs view
@@ -34,7 +34,7 @@ Inspired by the paper /Functional Programming with Overloading and Higher-Order Polymorphism/,- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+ Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) Advanced School of Functional Programming, 1995. -}
Control/Monad/RWS.hs view
@@ -14,7 +14,7 @@ -- Inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -----------------------------------------------------------------------------
Control/Monad/RWS/Class.hs view
@@ -14,7 +14,7 @@ -- Inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -----------------------------------------------------------------------------
Control/Monad/RWS/Lazy.hs view
@@ -15,7 +15,7 @@ -- Inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -----------------------------------------------------------------------------
Control/Monad/RWS/Strict.hs view
@@ -15,7 +15,7 @@ -- Inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -----------------------------------------------------------------------------
Control/Monad/Reader.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS_GHC -fno-warn-orphans #-} -- Temporary, I hope. SLPJ Aug08 {-# OPTIONS -fallow-undecidable-instances #-} {- | Module : Control.Monad.Reader@@ -33,7 +34,7 @@ Inspired by the paper /Functional Programming with Overloading and Higher-Order Polymorphism/, - Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+ Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) Advanced School of Functional Programming, 1995. -}
Control/Monad/Reader/Class.hs view
@@ -33,7 +33,7 @@ Inspired by the paper /Functional Programming with Overloading and Higher-Order Polymorphism/, - Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+ Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) Advanced School of Functional Programming, 1995. -}
Control/Monad/State.hs view
@@ -14,7 +14,7 @@ -- This module is inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -----------------------------------------------------------------------------
Control/Monad/State/Class.hs view
@@ -14,7 +14,7 @@ -- This module is inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -----------------------------------------------------------------------------
Control/Monad/State/Lazy.hs view
@@ -17,7 +17,7 @@ -- This module is inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -- -- See below for examples.
Control/Monad/State/Strict.hs view
@@ -17,7 +17,7 @@ -- This module is inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -- -- See below for examples.
Control/Monad/Trans.hs view
@@ -14,7 +14,7 @@ -- Inspired by the paper -- /Functional Programming with Overloading and -- Higher-Order Polymorphism/,--- Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+-- Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>) -- Advanced School of Functional Programming, 1995. -----------------------------------------------------------------------------
+ Makefile.inc view
@@ -0,0 +1,7 @@+ifeq "" "${MKDIR}"+MKDIR:=$(shell pwd)+#MKDIR:=$(PWD)+else+MKDIR:=$(patsubst %/$(notdir ${MKDIR}),%, ${MKDIR})+endif+include ${MKDIR}/Makefile.inc
+ Makefile.nhc98 view
@@ -0,0 +1,12 @@+THISPKG = mtl+SEARCH =++SRCS = \+ Control/Monad/Identity.hs \+ Control/Monad/Trans.hs++# Here are the main rules.+include ../Makefile.common++# (no dependencies)+
mtl.cabal view
@@ -1,5 +1,5 @@ name: mtl-version: 1.1.0.1+version: 1.1.0.2 license: BSD3 license-file: LICENSE author: Andy Gill
+ prologue.txt view
@@ -0,0 +1,4 @@+A monad transformer library, inspired by the paper+/Functional Programming with Overloading and Higher-Order Polymorphism/,+Mark P Jones (<http://www.cse.ogi.edu/~mpj/>)+Advanced School of Functional Programming, 1995.