package dbm

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t
type open_flag =
  1. | Dbm_rdonly
  2. | Dbm_wronly
  3. | Dbm_rdwr
  4. | Dbm_create
exception Dbm_error of string
val opendbm : string -> open_flag list -> int -> t
val close : t -> unit
val find : t -> string -> string
val add : t -> string -> string -> unit
val replace : t -> string -> string -> unit
val remove : t -> string -> unit
val firstkey : t -> string
val nextkey : t -> string
val iter : (string -> string -> 'a) -> t -> unit