The regional-pointers package
The library allows you to allocate memory in a region yielding a regional pointer to it. When the region terminates all pointers are automatically freed. Most importantly, a pointer can't be returned from the region. So it's impossible to reference unallocated memory.
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
This technique is implemented in the regions package which is re-exported from this library.
This library provides wrappers around all the Ptr functions from the Foreign.* modules from base.
Properties
| Versions | 0.1, 0.1.0.1, 0.1.0.2, 0.2, 0.3, 0.4, 0.5, 0.6, 0.6.0.1, 0.7 |
|---|---|
| Dependencies | base (≥4 & <4.3), base-unicode-symbols (≥0.1.1 & <0.2), MonadCatchIO-transformers (≥0.0.2.0 & <0.1), regions (0.4.*), transformers (≥0.1.4 & <0.2) |
| License | BSD3 |
| Copyright | 2010 Bas van Dijk |
| Author | Bas van Dijk |
| Maintainer | Bas van Dijk <v.dijk.bas@gmail.com> |
| Stability | experimental |
| Category | System, Monadic Regions |
| Source repository | darcs get http://code.haskell.org/~basvandijk/code/regional-pointers |
| Upload date | Thu Feb 4 10:22:11 UTC 2010 |
| Uploaded by | BasVanDijk |
| Built on | ghc-6.12 |
Modules
- Foreign
Downloads
- regional-pointers-0.1.0.1.tar.gz (Cabal source package)
- package description (included in the package)