packages feed

OneTuple 0.1.1 → 0.2.0

raw patch · 3 files changed

+10/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Data.Tuple.OneTuple: instance MonadFix OneTuple

Files

+ BUGS view
@@ -0,0 +1,5 @@++* OneTuple needs the ability to send email.+    Andrew Bromage points out that OneTuple isn't maximally+    flexible until it can send email.+
Data/Tuple/OneTuple.hs view
@@ -18,6 +18,7 @@  import Control.Applicative import Control.Monad+import Control.Monad.Fix import Data.Foldable import Data.Ix import Data.Monoid@@ -71,4 +72,7 @@     mempty = OneTuple mempty     mappend (OneTuple x) (OneTuple y) = OneTuple (mappend x y)     mconcat = Prelude.foldr1 mappend++instance MonadFix OneTuple where+    mfix f = let a = f (only a) in a 
OneTuple.cabal view
@@ -1,5 +1,5 @@ Name:            OneTuple-Version:         0.1.1+Version:         0.2.0 Synopsis:        Singleton Tuple Description:     Singleton Tuple Copyright:       (c) John Dorsey 2008