json/doc/examples/erase__size_type.cpp
2016-01-30 20:23:14 +01:00

16 lines
228 B
C++

#include <json.hpp>
using json = nlohmann::json;
int main()
{
// create a JSON array
json j_array = {0, 1, 2, 3, 4, 5};
// call erase
j_array.erase(2);
// print values
std::cout << j_array << '\n';
}