each-record ( ... quot: ( ... key value -- ... ) -- ... )
GNU Database Manager
Prev:each-value ( ... quot: ( ... value -- ... ) -- ... )


Vocabulary
gdbm

Inputs and outputs
quota quotation


Word description
Applies the quotation to the each key-value pair in the database.

Definition
USING: kernel ;

IN: gdbm

: each-record ( ... quot: ( ... key value -- ... ) -- ... )
[ dup fetch ] prepose each-key ; inline