We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Returns true if a key exists in the constant database being created.
> (define cdbm (make-cdb "test.cdb")) > (cdb-make-add cdbm "A" 1) > (cdb-make-exists cdbm "A") #t > (cdb-make-exists cdbm "B") #f > (cdb-make-finish cdbm) > (define cdb (init-cdb "test.cdb")) > (cdb-find cdb "A") 1 > (cdb-find cdb "B") #f > (cdb-finish cdb)
Sorry, there was an error rendering this page.