module type DbmType =sig
..end
Make
.
This signature is readily matched by Dbm
.
type
t
type
open_flag =
| |
Dbm_rdonly |
| |
Dbm_wronly |
| |
Dbm_rdwr |
| |
Dbm_create |
val opendbm : string -> open_flag list -> int -> t
val close : t -> unit
val find : t -> string -> string
val firstkey : t -> string
val nextkey : t -> string
exception Dbm_error of string
val add : t -> string -> string -> unit
val replace : t -> string -> string -> unit
val remove : t -> string -> unit
val iter : (string -> string -> 'a) -> t -> unit