packages feed

data-transform 0.1.0.0 → 0.1.0.1

raw patch · 3 files changed

+8/−3 lines, 3 files

Files

data-transform.cabal view
@@ -1,5 +1,5 @@ name:                data-transform-version:             0.1.0.0+version:             0.1.0.1 synopsis:            Functions to transform data structures. description:         This library provides a simple way to transform parts of                      complex data structures. It is based on Data.Data.@@ -28,3 +28,8 @@   hs-source-dirs:      src   ghc-options:         -Wall -fwarn-tabs -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction -fwarn-incomplete-uni-patterns   default-language:    Haskell2010++source-repository head+  type:     git+  location: git://github.com/ajscholl/data-transform.git+
src/Data/Transform.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE Trustworthy #-}+{-# LANGUAGE Safe #-} ----------------------------------------------------------------------------- -- | -- Copyright   :  (c) 2014 Jonas Scholl
src/Data/Transform/Internal.hs view
@@ -57,7 +57,7 @@ import Data.Set (Set) import qualified Data.Set as Set -import GHC.Exts hiding (Any)+import GHC.Exts (IsList(..)) import Unsafe.Coerce  -- | Wrapper object holding some endomorphism without exposing its type.