unpack-funcs 0.1.0 → 0.1.1
raw patch · 2 files changed
+6/−1 lines, 2 files
Files
- Control/Monad/Unpack.hs +5/−0
- unpack-funcs.cabal +1/−1
Control/Monad/Unpack.hs view
@@ -47,6 +47,11 @@ $(noUnpackInstance ''Maybe) $(noUnpackInstance ''Either) +instance Unpackable () where+ newtype UnpackedReaderT () m a = Result {runResult :: m a}+ runUnpackedReaderT func _ = runResult func+ unpackedReaderT func = Result $ func ()+ type (:~>) arg = UnpackedReaderT arg Identity infixr 0 :~>
unpack-funcs.cabal view
@@ -1,5 +1,5 @@ name: unpack-funcs-version: 0.1.0+version: 0.1.1 cabal-version: >= 1.6 tested-with: GHC category: Control