Reads an array from the BSON input and passes it to the SAX-parser.
8765 {
8766 std::int32_t document_size{};
8767 get_number<std::int32_t, true>(input_format_t::bson, document_size);
8768
8769 if (JSON_HEDLEY_UNLIKELY(!
sax->start_array(std::size_t(-1))))
8770 {
8771 return false;
8772 }
8773
8775 {
8776 return false;
8777 }
8778
8779 return sax->end_array();
8780 }
bool parse_bson_element_list(const bool is_array)
Read a BSON element list (as specified in the BSON-spec)
json_sax_t * sax
the SAX parser