You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::vector has a very useful reserve function that is used to preallocate memory for future push_backs. It reduces push_back time in case if a number of items is high. So it would be useful to add this function to basic_json for array reserve