compose-ltr 0.1.3 → 0.2.0
raw patch · 2 files changed
+6/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
compose-ltr.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: compose-ltr-version: 0.1.3+version: 0.2.0 synopsis: More intuitive, left-to-right function composition. description: More intuitive, left-to-right function composition. -- description:
src/Data/Function/Compose/LeftToRight.hs view
@@ -4,12 +4,17 @@ (.>) = flip (.) infixl 9 .>+{-# INLINE (.>) #-} ($>) = flip ($) infixl 0 $>+{-# INLINE ($>) #-} + (<$) = ($) infixr 1 <$+{-# INLINE (<$) #-} (<.) = (.) infixr 9 <.+{-# INLINE (<.) #-}