JSON for Modern C++  2.0.3
template<template< typename U, typename V, typename...Args > class ObjectType = std::map, template< typename U, typename...Args > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator>
void nlohmann::basic_json::erase ( const size_type  idx)
inline

Removes element from a JSON array at the index idx.

Parameters
[in]idxindex of the element to remove
Exceptions
std::domain_errorwhen called on a type other than JSON array; example: "cannot use erase() with null"
std::out_of_rangewhen idx >= size(); example: "array index 17 is out of range"
Complexity
Linear in distance between idx and the end of the container.
Example
The example shows the effect of erase().
1 #include <json.hpp>
2 
3 using json = nlohmann::json;
4 
5 int main()
6 {
7  // create a JSON array
8  json j_array = {0, 1, 2, 3, 4, 5};
9 
10  // call erase
11  j_array.erase(2);
12 
13  // print values
14  std::cout << j_array << '\n';
15 }
basic_json<> json
default JSON class
Definition: json.hpp:10122
Output (play with this example online):
[0,1,3,4,5]
The example code above can be translated with
g++ -std=c++11 -Isrc doc/examples/erase__size_type.cpp -o erase__size_type 
See also
erase(IteratorType) – removes the element at a given position
erase(IteratorType, IteratorType) – removes the elements in the given range
erase(const typename object_t::key_type&) – removes the element from an object at the given key
Since
version 1.0.0

Definition at line 4165 of file json.hpp.