package dokeysto
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Db.RO
Source
open_existing fn
open in read-only mode the persistent hashtbl whose data are stored in file fn
and whose index is stored in fn ^ ".idx"
.
find db k
get the current binding of k
in db
or raise Not_found
.
raw_read db pos
read from the data file of db
the string at position pos
. WARNING: regular users should not need to call this function.
iter f db
apply f
to all key-value pairs in db
. Cf. Hashtbl.iter for details.