Class virtual AnyDBM.t


class virtual t : object .. end
Implementations of AnyDBM must provide an implementing object of type t. The details of this class are not important for regular AnyDBM users. Methods of this class correspond to the standard functions in AnyDBM. Please refer to those functions for documentation on these methods.

method virtual close : unit
method virtual find : string -> string
method virtual add : string -> string -> unit
method virtual replace : string -> string -> unit
method virtual remove : string -> unit
method virtual iter : (string -> string -> unit) -> unit