json/doc/examples/erase__size_type.cpp
2015-06-28 15:49:40 +02:00

16 lines
225 B
C++

#include <json.hpp>
using namespace nlohmann;
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';
}