packages feed

compdata-fixplate 0.1 → 0.1.1

raw patch · 2 files changed

+8/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

compdata-fixplate.cabal view
@@ -1,5 +1,5 @@ name:                compdata-fixplate-version:             0.1+version:             0.1.1 synopsis:            Compdata basics implemented on top of Fixplate description:         This package implements the basic interface of                      <https://hackage.haskell.org/package/compdata Compdata>@@ -20,9 +20,15 @@ author:              Emil Axelsson maintainer:          78emil@gmail.com copyright:           2018 Emil Axelsson+homepage:            https://github.com/emilaxelsson/compdata-fixplate+bug-reports:         https://github.com/emilaxelsson/compdata-fixplate/issues category:            Generics build-type:          Simple cabal-version:       >=1.10++source-repository head+  type:     git+  location: https://github.com/emilaxelsson/compdata-fixplate  library   exposed-modules:   Data.Comp.Fixplate
src/Data/Comp/Fixplate.hs view
@@ -209,7 +209,7 @@ toTree :: (Functor f, Foldable f) => Term f -> Tree (f Hole) toTree = cata $ \f -> Node (const Hole <$> f) $ toList f --- Wrapper type with a 'ShowF' instance that does not show injections ('InL',+-- | Wrapper type with a 'ShowF' instance that does not show injections ('InL', -- 'InR') newtype HideInj f a = HideInj {unHideInj :: f a}   deriving (Foldable, Functor, Traversable)