Learn R Programming

rmongodb (version 1.8.0)

mongo.bson.buffer.append.null: Append a double field onto a mongo.bson.buffer

Description

Append a NULL value onto a mongo.bson.buffer.

Usage

mongo.bson.buffer.append.null(buf, name)

Arguments

buf
(mongo.bson.buffer) The buffer object to which to append.
name
(string) The name (key) of the field appended to the buffer.

Value

TRUE if successful; otherwise, FALSE if an error occured appending the data.

See Also

mongo.bson, mongo.bson.buffer, mongo.bson.buffer.append.

Examples

Run this code
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append.null(buf, "Nil")
b <- mongo.bson.from.buffer(buf)

# The above produces a BSON object of the form { "Nil" : NULL }

Run the code above in your browser using DataLab