Provided by: libbson-doc_2.2.1-1_all bug

SYNOPSIS

          bool
          bson_vector_packed_bit_view_write_packed (bson_vector_packed_bit_view_t view,
                                                    const uint8_t *packed_values,
                                                    size_t byte_count,
                                                    size_t vector_offset_bytes);

PARAMETERS

view: A valid bson_vector_packed_bit_view_t <>.

       • packed_values: Location where the packed bytes will be copied from.

       • byte_count: Number of bytes to write.

       • vector_offset_bytes: The byte index of the first packed byte to write.

DESCRIPTION

       Packed bytes are copied in bulk from the input pointer to the provided view.

       If  the Vector's element count isn't a multiple of 8, its final byte will include bits that do not belong
       to any element.  This function cannot be used to modify the unused bits, they will be  explicitly  zeroed
       if set.

RETURNS

       If  the  byte_count  and  vector_offset_bytes parameters overflow the bounds of the Vector, returns false
       without taking any other action.  If the parameters are in range, this  is  guaranteed  to  succeed.   On
       success,  returns  true  and writes byte_count bytes from *packed_values into the Vector starting at byte
       index vector_offset_bytes.

       See also:
          bson_vector_packed_bit_view_read_packed() <>
          bson_vector_packed_bit_const_view_read_packed() <>

Author

       MongoDB, Inc

Copyright

       2009-present, MongoDB, Inc.

2.2.1                                             Dec 11, 2025       BSON_VECTOR_PACKED_BIT_VIEW_WRITE_PACKED(3)