* Add key_compare member to ordered_map
* Replace == with key_compare in ordered_map
* Expose the actual comparison function used by object_t
nlohmann::ordered_map uses a different comparison function than the one
provided via template parameter.
* Introduce a type trait to detect if object_t has a key_compare member.
* Rename object_comparator_t to default_object_comparator_t.
* Add object_comparator_t to be conditionally defined as
object_t::key_compare, if available, or default_object_comparator_t
otherwise.
* Update the documentation accordingly.
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
* Add type traits to check if a type is usable as object key
Add type trait to check:
* if a type is a specialization of a template.
* if a type is a json_pointer.
* if a type is a basic_json::{const_,}iterator.
* if two types are comparable using a given comparison functor.
* if a type is comparable to basic_json::object_t::key_type.
* if a type has a member type is_transparent.
* if a type is usable as object key.
* if a type has an erase() function accepting a given KeyType.
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
* Rework basic_json element access to accept more key types
Rework basic_json element access member functions and operators to
accept any type that meets the requirements defined by type trait
detail::is_usable_as_key_type.
Member functions and operators:
* at()
* operator[]
* value()
* erase()
* find()
* count()
* contains()
Update documentation to reflect these changes.
Add unit tests to excercise the new functions using std::string_view.
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
Co-authored-by: Niels Lohmann <niels.lohmann@gmail.com>
6.4 KiB
6.4 KiB
nlohmann::basic_json::insert
// (1)
iterator insert(const_iterator pos, const basic_json& val);
iterator insert(const_iterator pos, basic_json&& val);
// (2)
iterator insert(const_iterator pos, size_type cnt, const basic_json& val);
// (3)
iterator insert(const_iterator pos, const_iterator first, const_iterator last);
// (4)
iterator insert(const_iterator pos, initializer_list_t ilist);
// (5)
void insert(const_iterator first, const_iterator last);
- Inserts element
valinto array before iteratorpos. - Inserts
cntcopies ofvalinto array before iteratorpos. - Inserts elements from range
[first, last)into array before iteratorpos. - Inserts elements from initializer list
ilistinto array before iteratorpos. - Inserts elements from range
[first, last)into object.
Parameters
pos(in)- iterator before which the content will be inserted; may be the
end()iterator val(in)- value to insert
cnt(in)- number of copies of
valto insert first(in)- begin of the range of elements to insert
last(in)- end of the range of elements to insert
ilist(in)- initializer list to insert the values from
Return value
- iterator pointing to the inserted
val. - iterator pointing to the first element inserted, or
posif#!cpp cnt==0 - iterator pointing to the first element inserted, or
posif#!cpp first==last - iterator pointing to the first element inserted, or
posifilistis empty - (none)
Exception safety
Strong exception safety: if an exception occurs, the original value stays intact.
Exceptions
- The function can throw the following exceptions:
- Throws
type_error.309if called on JSON values other than arrays; example:"cannot use insert() with string" - Throws
invalid_iterator.202if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
- The function can throw the following exceptions:
- Throws
type_error.309if called on JSON values other than arrays; example:"cannot use insert() with string" - Throws
invalid_iterator.202if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
- The function can throw the following exceptions:
- Throws
type_error.309if called on JSON values other than arrays; example:"cannot use insert() with string" - Throws
invalid_iterator.202if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value" - Throws
invalid_iterator.210iffirstandlastdo not belong to the same JSON value; example:"iterators do not fit" - Throws
invalid_iterator.211iffirstorlastare iterators into container for which insert is called; example:"passed iterators may not belong to container"
- Throws
- The function can throw the following exceptions:
- Throws
type_error.309if called on JSON values other than arrays; example:"cannot use insert() with string" - Throws
invalid_iterator.202if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
- The function can throw the following exceptions:
- Throws
type_error.309if called on JSON values other than objects; example:"cannot use insert() with string" - Throws
invalid_iterator.202if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value" - Throws
invalid_iterator.210iffirstandlastdo not belong to the same JSON value; example:"iterators do not fit"
- Throws
Complexity
- Constant plus linear in the distance between
posand end of the container. - Linear in
cntplus linear in the distance betweenposand end of the container. - Linear in
#!cpp std::distance(first, last)plus linear in the distance betweenposand end of the container. - Linear in
ilist.size()plus linear in the distance betweenposand end of the container. - Logarithmic:
O(N*log(size() + N)), whereNis the number of elements to insert.
Examples
??? example "Example (1): insert element into array"
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert.cpp"
```
Output:
```json
--8<-- "examples/insert.output"
```
??? example "Example (2): insert copies of element into array"
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__count.cpp"
```
Output:
```json
--8<-- "examples/insert__count.output"
```
??? example "Example (3): insert range of elements into array"
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__range.cpp"
```
Output:
```json
--8<-- "examples/insert__range.output"
```
??? example "Example (4): insert elements from initializer list into array"
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__ilist.cpp"
```
Output:
```json
--8<-- "examples/insert__ilist.output"
```
??? example "Example (5): insert range of elements into object"
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__range_object.cpp"
```
Output:
```json
--8<-- "examples/insert__range_object.output"
```
Version history
- Added in version 1.0.0.
- Added in version 1.0.0.
- Added in version 1.0.0.
- Added in version 1.0.0.
- Added in version 3.0.0.