packages feed

disposable 0.2.0.1 → 0.2.0.2

raw patch · 2 files changed

+18/−7 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

disposable.cabal view
@@ -1,5 +1,5 @@ name:                disposable-version:             0.2.0.1+version:             0.2.0.2 synopsis:            Allows storing different resource-releasing actions together. description:         SomeDisposable aloows storing different resource releasing actions togther in a container.                      This library is useful for queueing up GHCJS.Foreign.Callback together to be released
src/Control/Disposable.hs view
@@ -31,10 +31,21 @@     dispose (DisposeList as) = traverse_ dispose as  -- | Allow generic deriving instances of things that can be made into 'SomeDisposable'--- If a data type derives from Generic, and only contain instances of Disposable,--- then it can be made an instance of 'Disposing'.--- data Callbacks { ... } deriving Generic--- instance Disposing Callbacks+-- If a data type derives from Generic, and only contain instances of Disposing,+-- then it can also be made an instance of 'Disposing'.+-- Eg.+-- @+-- import Glazier.React as R+-- import GHCJS.Foreign.Callback as J+-- import GHC.Generics as G+--+-- data Plan = Plan+--     { _component :: R.ReactComponent+--     , _onRender :: J.Callback (J.JSVal -> IO J.JSVal)+--     ...+--     } deriving G.Generic+-- instance Disposing Plan+-- @ class Disposing a where   disposing :: a -> SomeDisposable   default disposing :: (G.Generic a, GDisposing (G.Rep a)) => a -> SomeDisposable@@ -46,8 +57,8 @@ instance Disposing (J.Callback a) where     disposing = Dispose --- | Generics instance basically traverses the data tree--- and expects the values to be all instances of 'Disposable'+-- | Generic instance basically traverses the data type structure+-- and expects the values to be all instances of 'Disposing' class GDisposing f where     gDisposing :: f p -> D.DList SomeDisposable