distributed-closure 0.4.1 → 0.4.1.1
raw patch · 2 files changed
+2/−1 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Control.Distributed.Closure: type /-> = WrappedArrowClosure
+ Control.Distributed.Closure: infixr 0 /->
+ Control.Distributed.Closure: type (/->) = WrappedArrowClosure
- Control.Distributed.Closure: [Dict] :: Dict a
+ Control.Distributed.Closure: [Dict] :: forall a. a => Dict a
- Control.Distributed.Closure.Internal: [Ap] :: !(Closure (a -> b)) -> !(Closure a) -> Closure b
+ Control.Distributed.Closure.Internal: [Ap] :: !Closure (a -> b) -> !Closure a -> Closure b
- Control.Distributed.Closure.Internal: [Closure] :: a -> !(Closure a) -> Closure a
+ Control.Distributed.Closure.Internal: [Closure] :: a -> !Closure a -> Closure a
- Control.Distributed.Closure.Internal: [StaticPtr] :: !(StaticPtr a) -> Closure a
+ Control.Distributed.Closure.Internal: [StaticPtr] :: !StaticPtr a -> Closure a
Files
- distributed-closure.cabal +1/−1
- tests/test.hs +1/−0
distributed-closure.cabal view
@@ -1,5 +1,5 @@ name: distributed-closure-version: 0.4.1+version: 0.4.1.1 synopsis: Serializable closures for distributed programming. description: See README. homepage: https://github.com/tweag/distributed-closure
tests/test.hs view
@@ -6,6 +6,7 @@ {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE TypeApplications #-} {-# LANGUAGE TypeFamilies #-}+{-# LANGUAGE UndecidableInstances #-} {-# OPTIONS_GHC -fno-warn-orphans #-}