regions icon indicating copy to clipboard operation
regions copied to clipboard

Provides the region monad for safely opening and working with scarce resources

Results 6 regions issues
Sort by recently updated
recently updated
newest added

Hello. What is the current state of the project? I see there are substantial changes between latest hackage upload and master, and they still compile mostly fine on current ghc...

The build log in a clean sandbox is: ``` $ cabal install Resolving dependencies... Notice: installing into a sandbox located at C:\Users\jophish\src\haskell\regions\.cabal-sandbox Configuring stm-2.4.4... Configuring transformers-0.4.2.0... Building stm-2.4.4... Building transformers-0.4.2.0......

FunctionalDependencies and FlexibleContexts are no longer needed in Internal.hs. Also update the comment on TypeFamilies to reflect the change from RegionBaseControl to RegionIOControl.

To me, `MonadBase IO` doesn't seem to add anything that `MonadIO` doesn't already do. However, the use of `MonadBase IO` means that my library now incurs a dependency on `transformers-base`,...

If allowed by GHC, add the instance: ``` haskell instance (MonadTransControl t, RegionBaseControl b parent) => RegionBaseControl b (t (RegionT s parent)) where unsafeLiftBaseWith f = liftWith $ \runT ->...