packages feed

tools-yj 0.1.0.20 → 0.1.0.21

raw patch · 2 files changed

+5/−2 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Data.Tuple.ToolsYj: uncurry3 :: (a -> b -> c -> d) -> (a, b, c) -> d

Files

src/Data/Tuple/ToolsYj.hs view
@@ -1,11 +1,14 @@ {-# OPTIONS_GHC -Wall -fno-warn-tabs #-}  module Data.Tuple.ToolsYj (-	uncurryDup,+	uncurry3, uncurryDup, 	mapTup3, appTup3, mapTup3M, appTup3M, mapTup3M_, appTup3M_ 	) where  import Control.Monad++uncurry3 :: (a -> b -> c -> d) -> (a, b, c) -> d+uncurry3 f (x, y, z) = f x y z  uncurryDup :: (a -> b -> c -> d) -> ((a, b), c) -> d uncurryDup = uncurry . uncurry
tools-yj.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           tools-yj-version:        0.1.0.20+version:        0.1.0.21 synopsis:       Tribial tools description:    Please see the README on GitHub at <https://github.com/YoshikuniJujo/tools-yj#readme> category:       Tools