1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

📝 add more API documentation

This commit is contained in:
Niels Lohmann
2020-08-16 14:48:48 +02:00
parent fb5c20134f
commit a430d25f22
5 changed files with 140 additions and 5 deletions

View File

@ -81,9 +81,9 @@ Todo
| `const_pointer` | `#!cpp std::allocator_traits<allocator_type>::const_pointer` |
| `iterator` | [LegacyBidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator) |
| `const_iterator` | constant [LegacyBidirectionalIterator](https://en.cppreference.com/w/cpp/named_req/BidirectionalIterator) |
| `reverse_iterator` | |
| `const_reverse_iterator` | |
| `iteration_proxy` | |
| `reverse_iterator` | reverse iterator, derived from `iterator` |
| `const_reverse_iterator` | reverse iterator, derived from `const_iterator` |
| `iteration_proxy` | helper type for [`items`](items.md) function |
### JSON value data types
@ -193,9 +193,9 @@ Access to the JSON value
- [**operator==**](operator==.md) - comparison: equal
- [**operator!=**](operator!=.md) - comparison: not equal
- operator< - comparison: less than
- [**operator<**](operator<.md) - comparison: less than
- operator<= - comparison: less than or equal
- operator> - comparison: greater than
- [**operator>**](operator>.md) - comparison: greater than
- operator>= - comparison: greater than or equal
### Serialization