packages feed

composition-prelude 1.5.0.6 → 1.5.0.7

raw patch · 2 files changed

+4/−5 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Control.Composition: infixl 1 &
+ Control.Composition: infixl 1 <&>

Files

composition-prelude.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: composition-prelude-version: 1.5.0.6+version: 1.5.0.7 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2017-2018 Vanessa McHale@@ -9,7 +9,7 @@ bug-reports: https://hub.darcs.net/vmchale/composition-prelude/issues synopsis: Higher-order function combinators description:-    Replacement for `composition` or `composition-exta`, exporting everything in one module.+    Replacement for `composition` or `composition-extra`, exporting everything in one module. category: Control, Data build-type: Simple extra-doc-files: README.md
src/Control/Composition.hs view
@@ -21,10 +21,9 @@     , thread     -- * Tuple helpers     , both-    -- * Functor helpers-    , (<&>)     -- * Reëxports from base     , (&)+    , (<&>)     , fix     , on     ) where@@ -102,7 +101,7 @@   #-}  {-# RULES-    "thread/fmap" forall f fs. thread (f:fs) = f . thread fs+    "thread" forall f fs. thread (f:fs) = f . thread fs   #-}  thread :: [a -> a] -> a -> a