1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-24 02:21:01 +03:00

📝 added documentation

This commit is contained in:
Niels Lohmann
2019-03-17 22:25:18 +01:00
parent 56f6d1d68e
commit 22c733e6fe
18 changed files with 233 additions and 56 deletions

View File

@ -3901,6 +3901,8 @@ class basic_json
@liveexample{The example shows how `find()` is used.,find__key_type}
@sa @ref contains(KeyT&&) const -- checks whether a key exists
@since version 1.0.0
*/
template<typename KeyT>
@ -3979,6 +3981,10 @@ class basic_json
@complexity Logarithmic in the size of the JSON object.
@liveexample{The following code shows an example for `contains()`.,contains}
@sa @ref find(KeyT&&) -- returns an iterator to an object element
@since version 3.6.0
*/
template<typename KeyT>