higgledy 0.2.0.1 → 0.2.1.0
raw patch · 2 files changed
+3/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Data.Generic.HKD.Types: class Tuple (f :: Type -> Type) (structure :: Type) (tuple :: Type) | f structure -> tuple
+ Data.Generic.HKD.Types: fromTuple :: Tuple f structure tuple => tuple -> HKD structure f
+ Data.Generic.HKD.Types: toTuple :: Tuple f structure tuple => HKD structure f -> tuple
Files
- higgledy.cabal +1/−1
- src/Data/Generic/HKD/Types.hs +2/−0
higgledy.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.4 name: higgledy-version: 0.2.0.1+version: 0.2.1.0 synopsis: Partial types as a type constructor. description: Use the generic representation of an ADT to get a higher-kinded data-style interface automatically. homepage: https://github.com/i-am-tom/higgledy
src/Data/Generic/HKD/Types.hs view
@@ -27,6 +27,8 @@ , HKD_ , GHKD_++ , Tuple (..) ) where import Data.Barbie (ConstraintsB (..), FunctorB (..), ProductB (..), ProductBC (..), TraversableB (..))