table of contents
BSON_ARRAY_BUILDER_APPEND_VECTOR_INT8_ELEMENTS(3) | libbson | BSON_ARRAY_BUILDER_APPEND_VECTOR_INT8_ELEMENTS(3) |
SYNOPSIS¶
bool bson_array_builder_append_vector_int8_elements (bson_array_builder_t *builder,
bson_vector_int8_const_view_t view);
PARAMETERS¶
- builder: A valid bson_array_builder_t.
- view: A bson_vector_int8_const_view_t pointing to validated int8 BSON Binary Vector subtype data.
DESCRIPTION¶
Converts the Vector pointed to by view into elements of a plain BSON Array, written to builder. Every element will be losslessly extended from int8_t to int32_t.
RETURNS¶
Returns true if the operation was applied successfully. The function fails if appending the array grows bson larger than INT32_MAX.
SEE ALSO:
bson_append_array_from_vector() bson_array_builder_append_vector_elements()
AUTHOR¶
MongoDB, Inc
COPYRIGHT¶
2009-present, MongoDB, Inc.
October 8, 2025 | 2.1.2 |