MCPcopy Create free account
hub / github.com/bitfieldaudio/OTTO / get_msgpack_array

Method get_msgpack_array

external/include/json.hpp:5473–5481  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5471
5472 template<typename NumberType>
5473 BasicJsonType get_msgpack_array(const NumberType len)
5474 {
5475 BasicJsonType result = value_t::array;
5476 std::generate_n(std::back_inserter(*result.m_value.array), len, [this]()
5477 {
5478 return parse_msgpack_internal();
5479 });
5480 return result;
5481 }
5482
5483 template<typename NumberType>
5484 BasicJsonType get_msgpack_object(const NumberType len)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected