fetch ( key -- content/f )
GNU Database Manager
Prev:exists? ( key -- ? )
Next:delete ( key -- )


Vocabulary
gdbm

Inputs and outputs
keyan object
content/fthe value associated with key or f if there is no such key


Word description
Looks up a given key and returns value associated with it. This word makes no distinction between a missing value and a value set to f.

Definition
USING: kernel ;

IN: gdbm

: fetch ( key -- content/f ) fetch* drop ;