Handbook
Glossary
file-exists-error? ( object -- ? )
Vocabulary
couchdb
Inputs and outputs
object
an
object
?
a
boolean
Word description
Tests if the object is an instance of the
file-exists-error
class.
Definition
USING:
accessors
assocs
kernel
;
IN:
couchdb
:
file-exists-error?
( object -- ? )
dup
couchdb-error?
[
data>>
"error"
of
"file_exists"
=
]
[
drop
f
]
if
;