A | |
add [Dbm] | add db key data inserts the pair (key , data ) in
the database db .
|
C | |
close [Dbm] |
Close the given descriptor.
|
F | |
find [Dbm] | find db key returns the data associated with the given
key in the database opened for the descriptor db .
|
firstkey [Dbm] |
See
Dbm.nextkey .
|
I | |
iter [Dbm] | iter f db applies f to each (key , data ) pair in
the database db .
|
N | |
nextkey [Dbm] |
Enumerate all keys in the given database, in an unspecified order.
|
O | |
opendbm [Dbm] |
Open a descriptor on an NDBM database.
|
R | |
remove [Dbm] | remove db key data removes the data associated with key
in db .
|
replace [Dbm] | replace db key data inserts the pair (key , data ) in
the database db .
|