composition-extra 1.0.1 → 1.0.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Data.Function.Twist: (<<<-->>>) :: (a -> b -> c -> d -> e -> f) -> d -> e -> c -> a -> b -> f
+ Data.Function.Twist: (<<<~~>>>) :: (a -> b -> c -> d -> e -> f) -> d -> e -> c -> a -> b -> f
Files
composition-extra.cabal view
@@ -1,5 +1,5 @@ name: composition-extra-version: 1.0.1+version: 1.0.1.1 synopsis: Combinators for unorthodox structure composition license: BSD3
src/Data/Function/Twist.hs view
@@ -19,7 +19,7 @@ twist5 :: (a -> b -> c -> d -> e -> f) -> d -> e -> c -> a -> b -> f twist5 fun d e c a b = fun a b c d e -(<<<-->>>) = twist5+(<<<~~>>>) = twist5 twist6 :: (a -> b -> c -> d -> e -> f -> g) -> d -> e -> f -> a -> b -> c -> g twist6 fun d e f a b c = fun a b c d e f