regions

This package provides the region monad transformer. Scarce resources like files, memory pointers or USB devices for example can be opened in a region. When the region terminates, all opened resources will be automatically closed. The main advantage of regions is that the opened resources can not be returned from the region which ensures no I/O with closed resources is possible. The primary technique used in this package is called "Lightweight monadic regions" which was invented by Oleg Kiselyov and Chung-chieh Shan. See: http://okmij.org/ftp/Haskell/regions.html#light-weight Also see the regions-mtl and regions-monadstf packages which provide instances for the classes in the respected monad transformers packages. For an example on how to use this library see the safer-file-handles, usb-safe or regional-pointers packages.


Keywords
control, library, monadic-regions, Propose Tags, http://okmij.org/ftp/Haskell/regions.html#light-weight, Skip to Readme, Index, Control.Monad.Trans.Region, Control.Monad.Trans.Region.OnExit, Control.Monad.Trans.Region.Unsafe, regions-0.11.tar.gz, browse, Package description, Package maintainers, BasVanDijk, edit package information , invented, regions-mtl, regions-monadstf, safer-file-handles, usb-safe, regional-pointers, haskell
License
BSD-3-Clause
Install
cabal install regions-0.11

Documentation

This package provides the region monad transformer. Scarce resources like files, memory pointers or USB devices for example can be opened in a region. When the region terminates, all opened resources will be automatically closed. The main advantage of regions is that the opened resources can not be returned from the region which ensures no I/O with closed resources is possible.

The primary technique used in this package is called "Lightweight monadic regions" which was invented by Oleg Kiselyov and Chung-chieh Shan.

Also see the regions-mtl and regions-monadstf packages which provide instances for the classes in the respected monad transformers packages.

For an example on how to use this library see the safer-file-handles, usb-safe or regional-pointers packages.