Copyright | (c) The University of Glasgow 2005 |
---|---|
License | BSD-style (see the file libraries/base/LICENSE) |
Maintainer | libraries@haskell.org |
Stability | experimental |
Portability | non-portable (requires STM) |
Safe Haskell | Trustworthy |
Language | Haskell2010 |
Synopsis
- data TArray i e
Documentation
TArray
is a transactional array, supporting the usual MArray
interface for mutable arrays.
It is conceptually implemented as Array i (TVar e)
.