packages feed

hs-functors 0.1.7.0 → 0.1.7.1

raw patch · 3 files changed

+5/−1 lines, 3 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Control.Semigroupoid: infixr 9 .

Files

Control/Comonad.hs view
@@ -16,6 +16,8 @@ infixr 1 <<=, =>=, =<=  class Functor ɯ => Comonad ɯ where+    {-# MINIMAL copure, (cut | (<<=)) #-}+     copure :: ɯ a -> a      cut :: ɯ a -> ɯ (ɯ a)
Control/Semigroupoid.hs view
@@ -6,6 +6,8 @@ import Data.Functor.Const (Const (..)) import Data.Tagged (Tagged (..)) +infixr 9 .+ -- | 'Category' sans 'id' -- -- Laws:
hs-functors.cabal view
@@ -1,5 +1,5 @@ name:                hs-functors-version:             0.1.7.0+version:             0.1.7.1 synopsis:            Functors from products of Haskell and its dual to Haskell -- description:          license:             BSD3