Description Usage Arguments Details Value See Also Examples
Append a undefined value onto a mongo.bson.buffer.
1 |
buf |
(mongo.bson.buffer) The buffer object to which to append. |
name |
(string) The name (key) of the field appended to the buffer. |
BSON has a special field type to indicate an undefined value. This function appends such an indicator as the value of a field.
TRUE if successful; otherwise, FALSE if an error occured appending the data.
mongo.bson,
mongo.bson.buffer,
mongo.undefined,
mongo.undefined.create
,
mongo.bson.buffer.append
.
1 2 3 4 5 6 7 8 9 10 11 | buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append.undefined(buf, "Undef")
b <- mongo.bson.from.buffer(buf)
# The above produces a BSON object of the form { "Undef" : UNDEFINED }
# The same result can be produced by the following code:
buf <- mongo.bson.buffer.create()
undef <- mongo.undefined.create()
mongo.bson.buffer.append(buf, "Undef", undef)
b <- mongo.bson.from.buffer(buf)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.