add reserve
function for array to reserve memory before adding json values into it
#436
Labels
reserve
function for array to reserve memory before adding json values into it
#436
std::vector
has a very usefulreserve
function that is used to preallocate memory for futurepush_back
s. It reducespush_back
time in case if a number of items is high. So it would be useful to add this function tobasic_json
for arrayreserve
The text was updated successfully, but these errors were encountered: