packages feed

dynamic 0.0.3 → 0.0.4

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Dynamic: infixr 9 !
+ Dynamic: infixl 9 !

Files

dynamic.cabal view
@@ -1,5 +1,5 @@ name:                dynamic-version:             0.0.3+version:             0.0.4 synopsis:            A dynamic type for Haskell description:         Want to do dynamically typed programming in Haskell sometimes? Here you go! homepage:            https://github.com/chrisdone/dynamic#readme
src/Dynamic.hs view
@@ -207,7 +207,7 @@     String str -> String (T.take 1 (T.drop (toInt k) str))     _ -> throw (DynamicTypeError "Can't index this type of value.") -infixr 9 !+infixl 9 !  -- | set key value object -- set the field's value. set :: Dynamic -> Dynamic -> Dynamic -> Dynamic