composition-prelude 0.1.0.3 → 0.1.0.4
raw patch · 2 files changed
+8/−8 lines, 2 files
Files
composition-prelude.cabal view
@@ -1,5 +1,5 @@ name: composition-prelude-version: 0.1.0.3+version: 0.1.0.4 synopsis: Higher-order function combinators description: Replacement for `composition` or `composition-exta`, exporting everything in one sane module. homepage: https://github.com/vmchale/composition-prelude#readme
src/Control/Composition.hs view
@@ -1,24 +1,24 @@ module Control.Composition- ( -- ^ Postcomposition+ ( -- | Postcomposition (.*) , (.**) , (.***)- -- ^ Precomposition+ -- | Precomposition , (-.) , (-.*)- -- ^ Fancy function application+ -- | Fancy function application , (-$)- -- ^ Tuple helpers+ -- | Tuple helpers , both- -- ^ Reexports from Control.Arrow+ -- | Reexports from Control.Arrow , (&&&) , (***)- -- ^ Reexports from Control.Monad+ -- | Reexports from Control.Monad , join , (=<<) , (>=>) , (<=<)- -- ^ Reexports from base+ -- | Reexports from base , (&) , fix , on