anydbm-1.0.1: Interface for DBM-like database systemsContentsIndex
Database.AnyDBM.MapDBM
Portabilityportable
Stabilityprovisional
MaintainerJohn Goerzen <jgoerzen@complete.org>
Description

Written by John Goerzen, jgoerzen@complete.org

Support for working with Maps through the Database.AnyDBM framework.

Synopsis
type MapDBM = MVar (Map String String)
newMapDBM :: IO MapDBM
setMapDBM :: MapDBM -> Map String String -> IO ()
getMapDBM :: MapDBM -> IO (Map String String)
Documentation
type MapDBM = MVar (Map String String)
The type of the MapDBM.
newMapDBM :: IO MapDBM
Makes a new MapDBM with an empty Map.
setMapDBM :: MapDBM -> Map String String -> IO ()
Sets the embedded Map in this MapDBM to the given Map.
getMapDBM :: MapDBM -> IO (Map String String)
Gets the embedded Map in this MapDBM.
Produced by Haddock version 0.8