|
MissingH.AnyDBM.FiniteMapDBM | Portability | portable | Stability | provisional | Maintainer | John Goerzen <jgoerzen@complete.org> |
|
|
|
|
|
Description |
Written by John Goerzen, jgoerzen@complete.org
Support for working with FiniteMaps through the MissingH.AnyDBM framework.
|
|
Synopsis |
|
|
|
Documentation |
|
type FiniteMapDBM = IORef (FiniteMap String String) |
The type of the FiniteMapDBM.
|
|
newFiniteMapDBM :: IO FiniteMapDBM |
Makes a new FiniteMapDBM with an empty FiniteMap.
|
|
setFiniteMapDBM :: FiniteMapDBM -> FiniteMap String String -> IO () |
Sets the embedded FiniteMap in this FiniteMapDBM to the
given FiniteMap.
|
|
getFiniteMapDBM :: FiniteMapDBM -> IO (FiniteMap String String) |
Gets the embedded FiniteMap in this FiniteMapDBM.
|
|
Produced by Haddock version 0.7 |