 | anydbm-1.0.4: Interface for DBM-like database systems | Contents | Index |
|
| Database.AnyDBM.MapDBM | | Portability | portable | | Stability | provisional | | Maintainer | John Goerzen <jgoerzen@complete.org> |
|
|
|
|
|
| Description |
Written by John Goerzen, jgoerzen@complete.org
Support for working with Maps through the Database.AnyDBM framework.
|
|
| Synopsis |
|
|
|
| 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 |