mongo.bson.buffer.append.element(rmongodb)
mongo.bson.buffer.append.element()所属R语言包:rmongodb
Append a mongo.bson.iterator's element into a mongo.bson.buffer
附加一个mongo.bson.iterator的成mongo.bson.buffer元素
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Append a mongo.bson.iterator's element into a mongo.bson.buffer.
附加一个mongo.bson.iterator的元素成mongo.bson.buffer。
mongo.bson.buffer.append() will detect if its value parameter is a mongo.bson.iterator object and perform the same action as this function.
mongo.bson.buffer.append()将检测到它的值参数是一个mongo.bson.iterator的的对象,这个函数执行相同的操作。
用法----------Usage----------
mongo.bson.buffer.append.element(buf, name, value)
参数----------Arguments----------
参数:buf
(mongo.bson.buffer) The buffer object to which to append.
(mongo.bson.buffer)缓冲器,附加的对象。
参数:name
(string) The name (key) of the subobject field appended to the buffer. If NULL, the name appended will come from the element pointed to by the iterator.
(字符串)名称(键)的子对象字段附加到缓冲区。如果为NULL,名称来自于由迭代器指向的元素。
参数:value
A (mongo.bson.iterator) object.
A(mongo.bson.iterator)的对象。
值----------Value----------
TRUE if successful; otherwise, FALSE if an error occured appending the data.
TRUE,如果成功,否则,FALSE,如果发生了错误,附加数据。
参见----------See Also----------
mongo.bson,<br> mongo.bson.buffer,<br> mongo.bson.find,<br> mongo.bson.from.list,<br> mongo.bson.buffer.append.
mongo.bson,mongo.bson.buffer参考,参考mongo.bson.find,参考mongo.bson.from.list,参考mongo.bson.buffer.append。
实例----------Examples----------
name <- mongo.bson.from.list(list(first="Joe", last="Smith"))
iter <- mongo.bson.find(name, "last")
buf <- mongo.bson.buffer.create()
mongo.bson.buffer.append.element(buf, "last", iter)
b <- mongo.bson.from.buffer(buf)
# the above will create a mongo.bson object (b) of the following form:[上述将创建一个mongo.bson的对象(二)以下形式的:]
# { "last" : "Smith" }[“最后一次”:“史密斯”}]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|