packages feed

prelude-edsl 0.2 → 0.3

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Prelude.EDSL: (*>) :: Applicative f => f a -> f b -> f b
+ Prelude.EDSL: (<$>) :: Functor f => (a -> b) -> f a -> f b
+ Prelude.EDSL: (<*) :: Applicative f => f a -> f b -> f a
+ Prelude.EDSL: (<*>) :: Applicative f => f (a -> b) -> f a -> f b
+ Prelude.EDSL: class Functor f => Applicative (f :: * -> *)
+ Prelude.EDSL: pure :: Applicative f => a -> f a

Files

Prelude/EDSL.hs view
@@ -16,7 +16,7 @@   , Bounded (..)   , Fractional (..)   , Functor (..)-#if __GHC_VERSION__ >= 710+#if __GLASGOW_HASKELL__ >= 710   , (<$>)   , Applicative (..) #endif
prelude-edsl.cabal view
@@ -1,5 +1,5 @@ name:                prelude-edsl-version:             0.2+version:             0.3 synopsis:            An EDSL-motivated subset of the Prelude description:         "Prelude.EDSL" exports a small subset of the "Prelude":                      some standard types and classes plus a small number of