json/json_8hpp_source.html

306 lines
857 KiB
HTML
Raw Normal View History

2015-12-16 14:12:56 +03:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
2016-01-13 21:16:43 +03:00
<meta name="generator" content="Doxygen 1.8.11"/>
2015-12-16 14:12:56 +03:00
<title>JSON for Modern C++: /Users/niels/Documents/Repositories/json/src/json.hpp Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="mylayout.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">JSON for Modern C++
2016-01-26 22:09:25 +03:00
&#160;<span id="projectnumber">2.0.0</span>
2015-12-16 14:12:56 +03:00
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
2016-01-13 21:16:43 +03:00
<!-- Generated by Doxygen 1.8.11 -->
2015-12-16 14:12:56 +03:00
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">json.hpp</div> </div>
</div><!--header-->
<div class="contents">
2016-01-30 22:25:28 +03:00
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;</div><div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;<span class="preprocessor">#ifndef NLOHMANN_JSON_HPP</span></div><div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;<span class="preprocessor">#define NLOHMANN_JSON_HPP</span></div><div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160;</div><div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160;<span class="preprocessor">#include &lt;algorithm&gt;</span></div><div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;<span class="preprocessor">#include &lt;array&gt;</span></div><div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;<span class="preprocessor">#include &lt;cassert&gt;</span></div><div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160;<span class="preprocessor">#include &lt;ciso646&gt;</span></div><div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;<span class="preprocessor">#include &lt;cmath&gt;</span></div><div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;<span class="preprocessor">#include &lt;cstddef&gt;</span></div><div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;<span class="preprocessor">#include &lt;cstdio&gt;</span></div><div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160;<span class="preprocessor">#include &lt;cstdlib&gt;</span></div><div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160;<span class="preprocessor">#include &lt;functional&gt;</span></div><div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160;<span class="preprocessor">#include &lt;initializer_list&gt;</span></div><div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;<span class="preprocessor">#include &lt;iomanip&gt;</span></div><div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160;<span class="preprocessor">#include &lt;iostream&gt;</span></div><div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160;<span class="preprocessor">#include &lt;iterator&gt;</span></div><div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160;<span class="preprocessor">#include &lt;limits&gt;</span></div><div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160;<span class="preprocessor">#include &lt;map&gt;</span></div><div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160;<span class="preprocessor">#include &lt;memory&gt;</span></div><div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160;<span class="preprocessor">#include &lt;sstream&gt;</span></div><div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160;<span class="preprocessor">#include &lt;stdexcept&gt;</span></div><div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160;<span class="preprocessor">#include &lt;string&gt;</span></div><div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160;<span class="preprocessor">#include &lt;type_traits&gt;</span></div><div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160;<span class="preprocessor">#include &lt;utility&gt;</span></div><div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160;<span class="preprocessor">#include &lt;vector&gt;</span></div><div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160;</div><div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160;<span class="comment">// enable ssize_t on MinGW</span></div><div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160;<span class="preprocessor">#ifdef __GNUC__</span></div><div class="line"><a name="l00066"></a><span class="lineno"> 66</span>&#160;<span class="preprocessor"> #ifdef __MINGW32__</s
2016-01-26 22:09:25 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_ab07728b4da636eda0a24e0a51b8b46d7_html_ab07728b4da636eda0a24e0a51b8b46d7"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_ab07728b4da636eda0a24e0a51b8b46d7.html#ab07728b4da636eda0a24e0a51b8b46d7">nlohmann::basic_json::iterator::operator*</a></div><div class="ttdeci">reference operator*()</div><div class="ttdoc">return a reference to the value pointed to by the iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06702">json.hpp:6702</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a7f53f3afd83a13c949c6c42e66e9c4b4_html_a7f53f3afd83a13c949c6c42e66e9c4b4"><div class="ttname"><a href="classnlohmann_1_1basic__json_a7f53f3afd83a13c949c6c42e66e9c4b4.html#a7f53f3afd83a13c949c6c42e66e9c4b4">nlohmann::basic_json::rbegin</a></div><div class="ttdeci">reverse_iterator rbegin()</div><div class="ttdoc">returns an iterator to the reverse-beginning </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04114">json.hpp:4114</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a5c8bb5200f5eac10d31e26be46e5b1ac_html_a5c8bb5200f5eac10d31e26be46e5b1ac"><div class="ttname"><a href="classnlohmann_1_1basic__json_a5c8bb5200f5eac10d31e26be46e5b1ac.html#a5c8bb5200f5eac10d31e26be46e5b1ac">nlohmann::basic_json::operator&lt;=</a></div><div class="ttdeci">friend bool operator&lt;=(const_reference lhs, const_reference rhs) noexcept</div><div class="ttdoc">comparison: less than or equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05341">json.hpp:5341</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a8f77085bd98c97a983d9ba12efbf6148_html_a8f77085bd98c97a983d9ba12efbf6148"><div class="ttname"><a href="classnlohmann_1_1basic__json_a8f77085bd98c97a983d9ba12efbf6148.html#a8f77085bd98c97a983d9ba12efbf6148">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const value_t value_type)</div><div class="ttdoc">create an empty value with a given type </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00971">json.hpp:971</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a3aaf41d385f0d9a93deb92f9b14ae0cf_html_a3aaf41d385f0d9a93deb92f9b14ae0cf"><div class="ttname"><a href="classnlohmann_1_1basic__json_a3aaf41d385f0d9a93deb92f9b14ae0cf.html#a3aaf41d385f0d9a93deb92f9b14ae0cf">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const array_t &amp;val)</div><div class="ttdoc">create an array (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01097">json.hpp:1097</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a51b0036310d8aa5858fecc0d91127f27_html_a51b0036310d8aa5858fecc0d91127f27"><div class="ttname"><a href="classnlohmann_1_1basic__json_a51b0036310d8aa5858fecc0d91127f27.html#a51b0036310d8aa5858fecc0d91127f27">nlohmann::basic_json::count</a></div><div class="ttdeci">size_type count(typename object_t::key_type key) const </div><div class="ttdoc">returns the number of occurrences of a key in a JSON object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03962">json.hpp:3962</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad09218e192a80ffa8df531941afdab60_html_ad09218e192a80ffa8df531941afdab60"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad09218e192a80ffa8df531941afdab60.html#ad09218e192a80ffa8df531941afdab60">nlohmann::basic_json::type</a></div><div class="ttdeci">value_t type() const noexcept</div><div class="ttdoc">return the type of the JSON value (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02088">json.hpp:2088</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a245b34ee6341bed2e3a611e223c53c48_html_a245b34ee6341bed2e3a611e223c53c48"><div class="ttname"><a href="classnlohmann_1_1basic__json_a245b34ee6341bed2e3a611e223c53c48.html#a245b34ee6341bed2e3a611e223c53c48">nlohmann::basic_json::is_number_integer</a></div><div class="ttdeci">bool is_number_integer() const noexcept</div><div class="ttdoc">return whether value is an integer number </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02220">json.hpp:2220</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a99f2e765029e51dd0fff018650f92eea_html_a99f2e765029e51dd0fff018650f92eea"><div class="ttname"><a href="classnlohmann_1_1basic__json_a99f2e765029e51dd0fff018650f92eea.html#a99f2e765029e51dd0fff018650f92eea">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">const_reference operator[](size_type idx) const </div><div class="ttdoc">access specified array element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03182">json.hpp:3182</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a8ffbf287736048e683f58306fdb8701f_html_a8ffbf287736048e683f58306fdb8701f"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a8ffbf287736048e683f58306fdb8701f.html#a8ffbf287736048e683f58306fdb8701f">nlohmann::basic_json::iterator::value</a></div><div class="ttdeci">reference value() const </div><div class="ttdoc">return the value of an iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06785">json.hpp:6785</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a563a7bd281e9919798d18396107fb05c_html_a563a7bd281e9919798d18396107fb05c"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a563a7bd281e9919798d18396107fb05c.html#a563a7bd281e9919798d18396107fb05c">nlohmann::basic_json::json_reverse_iterator::operator--</a></div><div class="ttdeci">json_reverse_iterator &amp; operator--()</div><div class="ttdoc">pre-decrement (it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06847">json.hpp:6847</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a08ad7169ceb437efff7b2d4a8c0dafe2_html_a08ad7169ceb437efff7b2d4a8c0dafe2"><div class="ttname"><a href="classnlohmann_1_1basic__json_a08ad7169ceb437efff7b2d4a8c0dafe2.html#a08ad7169ceb437efff7b2d4a8c0dafe2">nlohmann::basic_json::is_boolean</a></div><div class="ttdeci">bool is_boolean() const noexcept</div><div class="ttdoc">return whether value is a boolean </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02167">json.hpp:2167</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad6e51670e9c0052856f3fee01df5c44f_html_ad6e51670e9c0052856f3fee01df5c44f"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad6e51670e9c0052856f3fee01df5c44f.html#ad6e51670e9c0052856f3fee01df5c44f">nlohmann::basic_json::clear</a></div><div class="ttdeci">void clear() noexcept</div><div class="ttdoc">clears the contents </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04451">json.hpp:4451</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_ab4c0b9baaec9ebc4837158e272f6c803_html_ab4c0b9baaec9ebc4837158e272f6c803"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_ab4c0b9baaec9ebc4837158e272f6c803.html#ab4c0b9baaec9ebc4837158e272f6c803">nlohmann::basic_json::const_iterator::operator==</a></div><div class="ttdeci">bool operator==(const const_iterator &amp;other) const </div><div class="ttdoc">comparison: equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06436">json.hpp:6436</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a693439bffe56a9a8cf53bc4a06b911ff_html_a693439bffe56a9a8cf53bc4a06b911ff"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a693439bffe56a9a8cf53bc4a06b911ff.html#a693439bffe56a9a8cf53bc4a06b911ff">nlohmann::basic_json::json_reverse_iterator::operator--</a></div><div class="ttdeci">json_reverse_iterator operator--(int)</div><div class="ttdoc">post-decrement (it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06841">json.hpp:6841</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a140b8251f82e99ad279dcad5c977e26b_html_a140b8251f82e99ad279dcad5c977e26b"><div class="ttname"><a href="classnlohmann_1_1basic__json_a140b8251f82e99ad279dcad5c977e26b.html#a140b8251f82e99ad279dcad5c977e26b">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">reference operator[](T *(&amp;key)[n])</div><div class="ttdoc">access specified object element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03314">json.hpp:3314</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aaf363408931d76472ded14017e59c9e8_html_aaf363408931d76472ded14017e59c9e8"><div class="ttname"><a href="classnlohmann_1_1basic__json_aaf363408931d76472ded14017e59c9e8.html#aaf363408931d76472ded14017e59c9e8">nlohmann::basic_json::operator&gt;&gt;</a></div><div class="ttdeci">friend std::istream &amp; operator&gt;&gt;(std::istream &amp;i, basic_json &amp;j)</div><div class="ttdoc">deserialize from stream </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05554">json.hpp:5554</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a791afb7d6974c52b134d66aa1f249164_html_a791afb7d6974c52b134d66aa1f249164"><div class="ttname"><a href="classnlohmann_1_1basic__json_a791afb7d6974c52b134d66aa1f249164.html#a791afb7d6974c52b134d66aa1f249164">nlohmann::basic_json::is_number</a></div><div class="ttdeci">bool is_number() const noexcept</div><div class="ttdoc">return whether value is a number </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02194">json.hpp:2194</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_ae0c848dbc0af1cde15771d45d775b27c_html_ae0c848dbc0af1cde15771d45d775b27c"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_ae0c848dbc0af1cde15771d45d775b27c.html#ae0c848dbc0af1cde15771d45d775b27c">nlohmann::basic_json::iterator::operator+=</a></div><div class="ttdeci">iterator &amp; operator+=(difference_type i)</div><div class="ttdoc">add to iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06744">json.hpp:6744</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad25b2f8c21e241e2d63455537a9294ff_html_ad25b2f8c21e241e2d63455537a9294ff"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad25b2f8c21e241e2d63455537a9294ff.html#ad25b2f8c21e241e2d63455537a9294ff">nlohmann::basic_json::object</a></div><div class="ttdeci">static basic_json object(std::initializer_list&lt; basic_json &gt; init=std::initializer_list&lt; basic_json &gt;())</div><div class="ttdoc">explicitly create an object from an initializer list </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01676">json.hpp:1676</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_abc4552ba2fe39e7901a83dd6d4dec151_html_abc4552ba2fe39e7901a83dd6d4dec151"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_abc4552ba2fe39e7901a83dd6d4dec151.html#abc4552ba2fe39e7901a83dd6d4dec151">nlohmann::basic_json::const_iterator::operator-</a></div><div class="ttdeci">const_iterator operator-(difference_type i)</div><div class="ttdoc">subtract from iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06562">json.hpp:6562</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_af3bc3e83aa162d7ba4df16a949872723_html_af3bc3e83aa162d7ba4df16a949872723"><div class="ttname"><a href="classnlohmann_1_1basic__json_af3bc3e83aa162d7ba4df16a949872723.html#af3bc3e83aa162d7ba4df16a949872723">nlohmann::basic_json::boolean_t</a></div><div class="ttdeci">BooleanType boolean_t</div><div class="ttdoc">a type for a boolean </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00473">json.hpp:473</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a9486a272e034c0548305d7a12f3045e6_html_a9486a272e034c0548305d7a12f3045e6"><div class="ttname"><a href="classnlohmann_1_1basic__json_a9486a272e034c0548305d7a12f3045e6.html#a9486a272e034c0548305d7a12f3045e6">nlohmann::basic_json::operator+=</a></div><div class="ttdeci">reference operator+=(const typename object_t::value_type &amp;val)</div><div class="ttdoc">add an object to an object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04637">json.hpp:4637</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a73619da32d2a1388f5c7b37f2032138f_html_a73619da32d2a1388f5c7b37f2032138f"><div class="ttname"><a href="classnlohmann_1_1basic__json_a73619da32d2a1388f5c7b37f2032138f.html#a73619da32d2a1388f5c7b37f2032138f">nlohmann::basic_json::is_array</a></div><div class="ttdeci">bool is_array() const noexcept</div><div class="ttdoc">return whether value is an array </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02308">json.hpp:2308</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a3654da9a84deaf61899c4eee5b93c2c5_html_a3654da9a84deaf61899c4eee5b93c2c5"><div class="ttname"><a href="classnlohmann_1_1basic__json_a3654da9a84deaf61899c4eee5b93c2c5.html#a3654da9a84deaf61899c4eee5b93c2c5">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const typename string_t::value_type *val)</div><div class="ttdoc">create a string (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01187">json.hpp:1187</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ae799491eda5f5868a38ccdafca9fe0f0_html_ae799491eda5f5868a38ccdafca9fe0f0"><div class="ttname"><a href="classnlohmann_1_1basic__json_ae799491eda5f5868a38ccdafca9fe0f0.html#ae799491eda5f5868a38ccdafca9fe0f0">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(boolean_t val)</div><div class="ttdoc">create a boolean (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01236">json.hpp:1236</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_ad4ec2bbb8347e7aa3b58e616fd6c7f40_html_ad4ec2bbb8347e7aa3b58e616fd6c7f40"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_ad4ec2bbb8347e7aa3b58e616fd6c7f40.html#ad4ec2bbb8347e7aa3b58e616fd6c7f40">nlohmann::basic_json::json_reverse_iterator::operator[]</a></div><div class="ttdeci">reference operator[](difference_type n) const </div><div class="ttdoc">access to successor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06883">json.hpp:6883</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_affe7e160e7bb06eed83c8b437af4692f_html_affe7e160e7bb06eed83c8b437af4692f"><div class="ttname"><a href="classnlohmann_1_1basic__json_affe7e160e7bb06eed83c8b437af4692f.html#affe7e160e7bb06eed83c8b437af4692f">nlohmann::basic_json::find</a></div><div class="ttdeci">iterator find(typename object_t::key_type key)</div><div class="ttdoc">find an element in a JSON object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03914">json.hpp:3914</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a620e4d98496f85bd7be080248c0f14e9_html_a620e4d98496f85bd7be080248c0f14e9"><div class="ttname"><a href="classnlohmann_1_1basic__json_a620e4d98496f85bd7be080248c0f14e9.html#a620e4d98496f85bd7be080248c0f14e9">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const number_unsigned_t val)</div><div class="ttdoc">create an unsigned integer number (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01365">json.hpp:1365</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a6e2e21da48f5d9471716cd868a068327_html_a6e2e21da48f5d9471716cd868a068327"><div class="ttname"><a href="classnlohmann_1_1basic__json_a6e2e21da48f5d9471716cd868a068327.html#a6e2e21da48f5d9471716cd868a068327">nlohmann::basic_json::operator!=</a></div><div class="ttdeci">friend bool operator!=(const_reference lhs, const_reference rhs) noexcept</div><div class="ttdoc">comparison: not equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05179">json.hpp:5179</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab8b43d92a042dde96c28aeea81dd52de_html_ab8b43d92a042dde96c28aeea81dd52de"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab8b43d92a042dde96c28aeea81dd52de.html#ab8b43d92a042dde96c28aeea81dd52de">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const string_t &amp;val)</div><div class="ttdoc">create a string (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01163">json.hpp:1163</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a6f3dfd3e83a1e907d7946b47fcd7ceba_html_a6f3dfd3e83a1e907d7946b47fcd7ceba"><div class="ttname"><a href="classnlohmann_1_1basic__json_a6f3dfd3e83a1e907d7946b47fcd7ceba.html#a6f3dfd3e83a1e907d7946b47fcd7ceba">nlohmann::basic_json::push_back</a></div><div class="ttdeci">void push_back(const basic_json &amp;val)</div><div class="ttdoc">add an object to an array </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04563">json.hpp:4563</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a3da254c422ede5495f2815c5e48c00c5_html_a3da254c422ede5495f2815c5e48c00c5"><div class="ttname"><a href="classnlohmann_1_1basic__json_a3da254c422ede5495f2815c5e48c00c5.html#a3da254c422ede5495f2815c5e48c00c5">nlohmann::basic_json::erase</a></div><div class="ttdeci">void erase(const size_type idx)</div><div class="ttdoc">remove element from a JSON array given an index </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03878">json.hpp:3878</a></div></div>
<div class="ttc" id="namespacenlohmann_a2bfd99e845a2e5cd90aeaf1b1431f474_html_a2bfd99e845a2e5cd90aeaf1b1431f474"><div class="ttname"><a href="namespacenlohmann_a2bfd99e845a2e5cd90aeaf1b1431f474.html#a2bfd99e845a2e5cd90aeaf1b1431f474">nlohmann::json</a></div><div class="ttdeci">basic_json&lt;&gt; json</div><div class="ttdoc">default JSON class </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l08538">json.hpp:8538</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab00b882d39306d663c23dab110f5cae0_html_ab00b882d39306d663c23dab110f5cae0"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab00b882d39306d663c23dab110f5cae0.html#ab00b882d39306d663c23dab110f5cae0">nlohmann::basic_json::array_t</a></div><div class="ttdeci">ArrayType&lt; basic_json, AllocatorType&lt; basic_json &gt;&gt; array_t</div><div class="ttdoc">a type for an array </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00400">json.hpp:400</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_afec7d87796b8b538119b3ddc0d6950fb_html_afec7d87796b8b538119b3ddc0d6950fb"><div class="ttname"><a href="classnlohmann_1_1basic__json_afec7d87796b8b538119b3ddc0d6950fb.html#afec7d87796b8b538119b3ddc0d6950fb">nlohmann::basic_json::is_structured</a></div><div class="ttdeci">bool is_structured() const noexcept</div><div class="ttdoc">return whether type is structured </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02129">json.hpp:2129</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aa45753034bea87f9d2c0c42ace9ff75c_html_aa45753034bea87f9d2c0c42ace9ff75c"><div class="ttname"><a href="classnlohmann_1_1basic__json_aa45753034bea87f9d2c0c42ace9ff75c.html#aa45753034bea87f9d2c0c42ace9ff75c">nlohmann::basic_json::front</a></div><div class="ttdeci">reference front()</div><div class="ttdoc">access the first element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03549">json.hpp:3549</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a38ee0f09a318d003add75e0787040794_html_a38ee0f09a318d003add75e0787040794"><div class="ttname"><a href="classnlohmann_1_1basic__json_a38ee0f09a318d003add75e0787040794.html#a38ee0f09a318d003add75e0787040794">nlohmann::basic_json::swap</a></div><div class="ttdeci">void swap(object_t &amp;other)</div><div class="ttdoc">exchanges the values </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04935">json.hpp:4935</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_ac2634bee082633671125e909dffad40a_html_ac2634bee082633671125e909dffad40a"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_ac2634bee082633671125e909dffad40a.html#ac2634bee082633671125e909dffad40a">nlohmann::basic_json::json_reverse_iterator::operator-</a></div><div class="ttdeci">json_reverse_iterator operator-(difference_type i) const </div><div class="ttdoc">subtract from iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06869">json.hpp:6869</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a0d5820d1dda9dea3bbeb029cacf68522_html_a0d5820d1dda9dea3bbeb029cacf68522"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a0d5820d1dda9dea3bbeb029cacf68522.html#a0d5820d1dda9dea3bbeb029cacf68522">nlohmann::basic_json::const_iterator::operator+=</a></div><div class="ttdeci">const_iterator &amp; operator+=(difference_type i)</div><div class="ttdoc">add to iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06520">json.hpp:6520</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_html"><div class="ttname"><a href="classnlohmann_1_1basic__json.html">nlohmann::basic_json</a></div><div class="ttdoc">a class to store JSON values </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00194">json.hpp:194</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a6adb089a5cacff9c7ad80d753b3fdf98_html_a6adb089a5cacff9c7ad80d753b3fdf98"><div class="ttname"><a href="classnlohmann_1_1basic__json_a6adb089a5cacff9c7ad80d753b3fdf98.html#a6adb089a5cacff9c7ad80d753b3fdf98">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const number_float_t val)</div><div class="ttdoc">create a floating-point number (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01425">json.hpp:1425</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_ae58cd597336ad125d9615cff87fcd87e_html_ae58cd597336ad125d9615cff87fcd87e"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_ae58cd597336ad125d9615cff87fcd87e.html#ae58cd597336ad125d9615cff87fcd87e">nlohmann::basic_json::iterator::operator-&gt;</a></div><div class="ttdeci">pointer operator-&gt;()</div><div class="ttdoc">dereference the iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06708">json.hpp:6708</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_aca5116682e206dac48f8a56716a3280b_html_aca5116682e206dac48f8a56716a3280b"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_aca5116682e206dac48f8a56716a3280b.html#aca5116682e206dac48f8a56716a3280b">nlohmann::basic_json::json_reverse_iterator::value</a></div><div class="ttdeci">reference value() const </div><div class="ttdoc">return the value of an iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06896">json.hpp:6896</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a98e05a2c9b8f74bd60442772cddeee52_html_a98e05a2c9b8f74bd60442772cddeee52"><div class="ttname"><a href="classnlohmann_1_1basic__json_a98e05a2c9b8f74bd60442772cddeee52.html#a98e05a2c9b8f74bd60442772cddeee52">nlohmann::basic_json::operator==</a></div><div class="ttdeci">friend bool operator==(std::nullptr_t, const_reference v) noexcept</div><div class="ttdoc">comparison: equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05158">json.hpp:5158</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a3da0951c80c8f4b26497aba38cb3e463_html_a3da0951c80c8f4b26497aba38cb3e463"><div class="ttname"><a href="classnlohmann_1_1basic__json_a3da0951c80c8f4b26497aba38cb3e463.html#a3da0951c80c8f4b26497aba38cb3e463">nlohmann::basic_json::crbegin</a></div><div class="ttdeci">const_reverse_iterator crbegin() const </div><div class="ttdoc">returns a const reverse iterator to the last element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04176">json.hpp:4176</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ac4b10b2364f26ce47bdb9a413ff04a59_html_ac4b10b2364f26ce47bdb9a413ff04a59"><div class="ttname"><a href="classnlohmann_1_1basic__json_ac4b10b2364f26ce47bdb9a413ff04a59.html#ac4b10b2364f26ce47bdb9a413ff04a59">nlohmann::basic_json::number_integer_t</a></div><div class="ttdeci">NumberIntegerType number_integer_t</div><div class="ttdoc">a type for a number (integer) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00544">json.hpp:544</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a624025acfcf64364d98424402b837bc6_html_a624025acfcf64364d98424402b837bc6"><div class="ttname"><a href="classnlohmann_1_1basic__json_a624025acfcf64364d98424402b837bc6.html#a624025acfcf64364d98424402b837bc6">nlohmann::basic_json::insert</a></div><div class="ttdeci">iterator insert(const_iterator pos, size_type cnt, const basic_json &amp;val)</div><div class="ttdoc">inserts elements </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04721">json.hpp:4721</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a674de1ee73e6bf4843fc5dc1351fb726_html_a674de1ee73e6bf4843fc5dc1351fb726"><div class="ttname"><a href="classnlohmann_1_1basic__json_a674de1ee73e6bf4843fc5dc1351fb726.html#a674de1ee73e6bf4843fc5dc1351fb726">nlohmann::basic_json::at</a></div><div class="ttdeci">const_reference at(const typename object_t::key_type &amp;key) const </div><div class="ttdoc">access specified object element with bounds checking </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03090">json.hpp:3090</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a7a80257f2303210b0a5d056fc0b30b40_html_a7a80257f2303210b0a5d056fc0b30b40"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a7a80257f2303210b0a5d056fc0b30b40.html#a7a80257f2303210b0a5d056fc0b30b40">nlohmann::basic_json::const_iterator::operator+</a></div><div class="ttdeci">const_iterator operator+(difference_type i)</div><div class="ttdoc">add to iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06554">json.hpp:6554</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a9c01092601b6229eee4f971aad263133_html_a9c01092601b6229eee4f971aad263133"><div class="ttname"><a href="classnlohmann_1_1basic__json_a9c01092601b6229eee4f971aad263133.html#a9c01092601b6229eee4f971aad263133">nlohmann::basic_json::rbegin</a></div><div class="ttdeci">const_reverse_iterator rbegin() const </div><div class="ttdoc">returns a const reverse iterator to the last element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04122">json.hpp:4122</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_html"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator.html">nlohmann::basic_json::iterator</a></div><div class="ttdoc">a mutable random access iterator for the basic_json class </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06669">json.hpp:6669</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab81f2801779e6cb9d98770860af2e39a_html_ab81f2801779e6cb9d98770860af2e39a"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab81f2801779e6cb9d98770860af2e39a.html#ab81f2801779e6cb9d98770860af2e39a">nlohmann::basic_json::parse</a></div><div class="ttdeci">static basic_json parse(std::istream &amp;&amp;i, parser_callback_t cb=nullptr)</div><div class="ttdoc">deserialize from stream </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05516">json.hpp:5516</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a8dbaec5bf8ccba3225520356629061cb_html_a8dbaec5bf8ccba3225520356629061cb"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a8dbaec5bf8ccba3225520356629061cb.html#a8dbaec5bf8ccba3225520356629061cb">nlohmann::basic_json::const_iterator::operator++</a></div><div class="ttdeci">const_iterator operator++(int)</div><div class="ttdoc">post-increment (it++) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06362">json.hpp:6362</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad2f716992118a42aa8f8d57950a8d0bb_html_ad2f716992118a42aa8f8d57950a8d0bb"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad2f716992118a42aa8f8d57950a8d0bb.html#ad2f716992118a42aa8f8d57950a8d0bb">nlohmann::basic_json::is_string</a></div><div class="ttdeci">bool is_string() const noexcept</div><div class="ttdoc">return whether value is a string </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02327">json.hpp:2327</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a0ac9894c9de8dc551cf2e5f1c605537f_html_a0ac9894c9de8dc551cf2e5f1c605537f"><div class="ttname"><a href="classnlohmann_1_1basic__json_a0ac9894c9de8dc551cf2e5f1c605537f.html#a0ac9894c9de8dc551cf2e5f1c605537f">nlohmann::basic_json::object_t</a></div><div class="ttdeci">ObjectType&lt; StringType, basic_json, std::less&lt; StringType &gt;, AllocatorType&lt; std::pair&lt; const StringType, basic_json &gt;&gt;&gt; object_t</div><div class="ttdoc">a type for an object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00354">json.hpp:354</a></div></div>
2015-12-16 14:12:56 +03:00
<div class="ttc" id="namespacestd_html"><div class="ttname"><a href="namespacestd.html">std</a></div><div class="ttdoc">STL namespace. </div></div>
2016-01-26 22:09:25 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_a60a04166c122072ab11eaf9845d9cd1d_html_a60a04166c122072ab11eaf9845d9cd1d"><div class="ttname"><a href="classnlohmann_1_1basic__json_a60a04166c122072ab11eaf9845d9cd1d.html#a60a04166c122072ab11eaf9845d9cd1d">nlohmann::basic_json::number_unsigned_t</a></div><div class="ttdeci">NumberUnsignedType number_unsigned_t</div><div class="ttdoc">a type for a number (unsigned) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00616">json.hpp:616</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a06efb200b69942eacd1ea22d0f6ccebb_html_a06efb200b69942eacd1ea22d0f6ccebb"><div class="ttname"><a href="classnlohmann_1_1basic__json_a06efb200b69942eacd1ea22d0f6ccebb.html#a06efb200b69942eacd1ea22d0f6ccebb">nlohmann::basic_json::const_pointer</a></div><div class="ttdeci">typename std::allocator_traits&lt; allocator_type &gt;::const_pointer const_pointer</div><div class="ttdoc">the type of an element const pointer </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00235">json.hpp:235</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a5685815624b086caa532f41e853d4b0f_html_a5685815624b086caa532f41e853d4b0f"><div class="ttname"><a href="classnlohmann_1_1basic__json_a5685815624b086caa532f41e853d4b0f.html#a5685815624b086caa532f41e853d4b0f">nlohmann::basic_json::array</a></div><div class="ttdeci">static basic_json array(std::initializer_list&lt; basic_json &gt; init=std::initializer_list&lt; basic_json &gt;())</div><div class="ttdoc">explicitly create an array from an initializer list </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01636">json.hpp:1636</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_af148cdab12df5bf86119fac735ccaac5_html_af148cdab12df5bf86119fac735ccaac5"><div class="ttname"><a href="classnlohmann_1_1basic__json_af148cdab12df5bf86119fac735ccaac5.html#af148cdab12df5bf86119fac735ccaac5">nlohmann::basic_json::iterator_wrapper</a></div><div class="ttdeci">static iteration_proxy&lt; const_iterator &gt; iterator_wrapper(const_reference cont)</div><div class="ttdoc">wrapper to access iterator member functions in range-based for </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04228">json.hpp:4228</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a7c3182cfabc0bdd9f3a14216fe0e8154_html_a7c3182cfabc0bdd9f3a14216fe0e8154"><div class="ttname"><a href="classnlohmann_1_1basic__json_a7c3182cfabc0bdd9f3a14216fe0e8154.html#a7c3182cfabc0bdd9f3a14216fe0e8154">nlohmann::basic_json::operator=</a></div><div class="ttdeci">reference &amp; operator=(basic_json other) noexcept( std::is_nothrow_move_constructible&lt; value_t &gt;::value and std::is_nothrow_move_assignable&lt; value_t &gt;::value and std::is_nothrow_move_constructible&lt; json_value &gt;::value and std::is_nothrow_move_assignable&lt; json_value &gt;::value )</div><div class="ttdoc">copy assignment </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01962">json.hpp:1962</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a9ea0497199b1e96ce9cadd1f202ec343_html_a9ea0497199b1e96ce9cadd1f202ec343"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a9ea0497199b1e96ce9cadd1f202ec343.html#a9ea0497199b1e96ce9cadd1f202ec343">nlohmann::basic_json::const_iterator::value_type</a></div><div class="ttdeci">typename basic_json::value_type value_type</div><div class="ttdoc">the type of the values when the iterator is dereferenced </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06134">json.hpp:6134</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a7ab11375ed2e29c2fcb6119386851445_html_a7ab11375ed2e29c2fcb6119386851445"><div class="ttname"><a href="classnlohmann_1_1basic__json_a7ab11375ed2e29c2fcb6119386851445.html#a7ab11375ed2e29c2fcb6119386851445">nlohmann::basic_json::get_ptr</a></div><div class="ttdeci">PointerType get_ptr() noexcept</div><div class="ttdoc">get a pointer value (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02804">json.hpp:2804</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a71b1d38ef402dfee58fba1fe01fa67f5_html_a71b1d38ef402dfee58fba1fe01fa67f5"><div class="ttname"><a href="classnlohmann_1_1basic__json_a71b1d38ef402dfee58fba1fe01fa67f5.html#a71b1d38ef402dfee58fba1fe01fa67f5">nlohmann::basic_json::back</a></div><div class="ttdeci">reference back()</div><div class="ttdoc">access the last element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03583">json.hpp:3583</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_af677a29b0e66edc9f66e5167e4667071_html_af677a29b0e66edc9f66e5167e4667071"><div class="ttname"><a href="classnlohmann_1_1basic__json_af677a29b0e66edc9f66e5167e4667071.html#af677a29b0e66edc9f66e5167e4667071">nlohmann::basic_json::const_reference</a></div><div class="ttdeci">const value_type &amp; const_reference</div><div class="ttdoc">the type of an element const reference </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00222">json.hpp:222</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a1da96fc3054d547e7706d3a2f073f389_html_a1da96fc3054d547e7706d3a2f073f389"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a1da96fc3054d547e7706d3a2f073f389.html#a1da96fc3054d547e7706d3a2f073f389">nlohmann::basic_json::const_iterator::pointer</a></div><div class="ttdeci">typename basic_json::const_pointer pointer</div><div class="ttdoc">defines a pointer to the type iterated over (value_type) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06138">json.hpp:6138</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab7d704826813d13731fbcaf220160826_html_ab7d704826813d13731fbcaf220160826"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab7d704826813d13731fbcaf220160826.html#ab7d704826813d13731fbcaf220160826">nlohmann::basic_json::is_number_unsigned</a></div><div class="ttdeci">bool is_number_unsigned() const noexcept</div><div class="ttdoc">return whether value is an unsigned integer number </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02245">json.hpp:2245</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a5212588544f6d2266384c3be9bfda0c5_html_a5212588544f6d2266384c3be9bfda0c5"><div class="ttname"><a href="classnlohmann_1_1basic__json_a5212588544f6d2266384c3be9bfda0c5.html#a5212588544f6d2266384c3be9bfda0c5">nlohmann::basic_json::push_back</a></div><div class="ttdeci">void push_back(const typename object_t::value_type &amp;val)</div><div class="ttdoc">add an object to an object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04613">json.hpp:4613</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a1ec2232bcd43091d49f8dfdd6cfe9865_html_a1ec2232bcd43091d49f8dfdd6cfe9865"><div class="ttname"><a href="classnlohmann_1_1basic__json_a1ec2232bcd43091d49f8dfdd6cfe9865.html#a1ec2232bcd43091d49f8dfdd6cfe9865">nlohmann::basic_json::end</a></div><div class="ttdeci">iterator end()</div><div class="ttdoc">returns an iterator to one past the last element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04056">json.hpp:4056</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a35303ad045a06c2a79dc28ac29652e86_html_a35303ad045a06c2a79dc28ac29652e86"><div class="ttname"><a href="classnlohmann_1_1basic__json_a35303ad045a06c2a79dc28ac29652e86.html#a35303ad045a06c2a79dc28ac29652e86">nlohmann::basic_json::parse</a></div><div class="ttdeci">static basic_json parse(const string_t &amp;s, parser_callback_t cb=nullptr)</div><div class="ttdoc">deserialize from string </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05479">json.hpp:5479</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad9cd312208273fb3fb2adf1f6d8d34ae_html_ad9cd312208273fb3fb2adf1f6d8d34ae"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad9cd312208273fb3fb2adf1f6d8d34ae.html#ad9cd312208273fb3fb2adf1f6d8d34ae">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">const_reference operator[](T *(&amp;key)[n]) const </div><div class="ttdoc">read-only access specified object element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03349">json.hpp:3349</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aeaa0644fd6b99af364e772092268dfd6_html_aeaa0644fd6b99af364e772092268dfd6"><div class="ttname"><a href="classnlohmann_1_1basic__json_aeaa0644fd6b99af364e772092268dfd6.html#aeaa0644fd6b99af364e772092268dfd6">nlohmann::basic_json::insert</a></div><div class="ttdeci">iterator insert(const_iterator pos, const_iterator first, const_iterator last)</div><div class="ttdoc">inserts elements </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04774">json.hpp:4774</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ade0e56c8c320d7f342e7a5697e6d6f7e_html_ade0e56c8c320d7f342e7a5697e6d6f7e"><div class="ttname"><a href="classnlohmann_1_1basic__json_ade0e56c8c320d7f342e7a5697e6d6f7e.html#ade0e56c8c320d7f342e7a5697e6d6f7e">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(std::nullptr_t) noexcept</div><div class="ttdoc">create a null object (explicitly) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01015">json.hpp:1015</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_af7acf3838a79363356f24538941a559c_html_af7acf3838a79363356f24538941a559c"><div class="ttname"><a href="classnlohmann_1_1basic__json_af7acf3838a79363356f24538941a559c.html#af7acf3838a79363356f24538941a559c">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(InputIT first, InputIT last)</div><div class="ttdoc">construct a JSON container given an iterator range </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01746">json.hpp:1746</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a7e01532727c10f87926dac4eb8e170f4_html_a7e01532727c10f87926dac4eb8e170f4"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a7e01532727c10f87926dac4eb8e170f4.html#a7e01532727c10f87926dac4eb8e170f4">nlohmann::basic_json::iterator::operator[]</a></div><div class="ttdeci">reference operator[](difference_type n) const </div><div class="ttdoc">access to successor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06779">json.hpp:6779</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a1a446a48beed4ea564addfd12d235793_html_a1a446a48beed4ea564addfd12d235793"><div class="ttname"><a href="classnlohmann_1_1basic__json_a1a446a48beed4ea564addfd12d235793.html#a1a446a48beed4ea564addfd12d235793">nlohmann::basic_json::get_allocator</a></div><div class="ttdeci">static allocator_type get_allocator()</div><div class="ttdoc">returns the allocator associated with the container </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00255">json.hpp:255</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a2e26bd0b0168abb61f67ad5bcd5b9fa1_html_a2e26bd0b0168abb61f67ad5bcd5b9fa1"><div class="ttname"><a href="classnlohmann_1_1basic__json_a2e26bd0b0168abb61f67ad5bcd5b9fa1.html#a2e26bd0b0168abb61f67ad5bcd5b9fa1">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">const_reference operator[](const typename object_t::key_type &amp;key) const </div><div class="ttdoc">read-only access specified object element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03271">json.hpp:3271</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aa6fd72df1ce9f80e61012784c598456e_html_aa6fd72df1ce9f80e61012784c598456e"><div class="ttname"><a href="classnlohmann_1_1basic__json_aa6fd72df1ce9f80e61012784c598456e.html#aa6fd72df1ce9f80e61012784c598456e">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">const_reference operator[](T *key) const </div><div class="ttdoc">read-only access specified object element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03431">json.hpp:3431</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a99ee137dab7e5c948457f6a5321b54b1_html_a99ee137dab7e5c948457f6a5321b54b1"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a99ee137dab7e5c948457f6a5321b54b1.html#a99ee137dab7e5c948457f6a5321b54b1">nlohmann::basic_json::json_reverse_iterator::operator+</a></div><div class="ttdeci">json_reverse_iterator operator+(difference_type i) const </div><div class="ttdoc">add to iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06861">json.hpp:6861</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a90239431815c94b0a334f7f4c55eb859_html_a90239431815c94b0a334f7f4c55eb859"><div class="ttname"><a href="classnlohmann_1_1basic__json_a90239431815c94b0a334f7f4c55eb859.html#a90239431815c94b0a334f7f4c55eb859">nlohmann::basic_json::empty</a></div><div class="ttdeci">bool empty() const noexcept</div><div class="ttdoc">checks whether the container is empty </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04272">json.hpp:4272</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a1579a8f72a230358d6cd1a6e8a62859b_html_a1579a8f72a230358d6cd1a6e8a62859b"><div class="ttname"><a href="classnlohmann_1_1basic__json_a1579a8f72a230358d6cd1a6e8a62859b.html#a1579a8f72a230358d6cd1a6e8a62859b">nlohmann::basic_json::size_type</a></div><div class="ttdeci">std::size_t size_type</div><div class="ttdoc">a type to represent container sizes </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00227">json.hpp:227</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_acecae6d237fcf14c909fb42b9d2e2955_html_acecae6d237fcf14c909fb42b9d2e2955"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_acecae6d237fcf14c909fb42b9d2e2955.html#acecae6d237fcf14c909fb42b9d2e2955">nlohmann::basic_json::json_reverse_iterator::key</a></div><div class="ttdeci">object_t::key_type key() const </div><div class="ttdoc">return the key of an object iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06889">json.hpp:6889</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a81aaaab0f3b326afda2d226daab4f1e1_html_a81aaaab0f3b326afda2d226daab4f1e1"><div class="ttname"><a href="classnlohmann_1_1basic__json_a81aaaab0f3b326afda2d226daab4f1e1.html#a81aaaab0f3b326afda2d226daab4f1e1">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const CompatibleArrayType &amp;val)</div><div class="ttdoc">create an array (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01134">json.hpp:1134</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab31368c0b67f8e4f291a45e6498018be_html_ab31368c0b67f8e4f291a45e6498018be"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab31368c0b67f8e4f291a45e6498018be.html#ab31368c0b67f8e4f291a45e6498018be">nlohmann::basic_json::at</a></div><div class="ttdeci">const_reference at(size_type idx) const </div><div class="ttdoc">access specified array element with bounds checking </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02994">json.hpp:2994</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a112a2d8e76345ea64f71e2985fee4c52_html_a112a2d8e76345ea64f71e2985fee4c52"><div class="ttname"><a href="classnlohmann_1_1basic__json_a112a2d8e76345ea64f71e2985fee4c52.html#a112a2d8e76345ea64f71e2985fee4c52">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(size_type cnt, const basic_json &amp;val)</div><div class="ttdoc">construct an array with count copies of given value </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01700">json.hpp:1700</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a9ebc4c99e6fc90c965af0f39ad2ca70e_html_a9ebc4c99e6fc90c965af0f39ad2ca70e"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a9ebc4c99e6fc90c965af0f39ad2ca70e.html#a9ebc4c99e6fc90c965af0f39ad2ca70e">nlohmann::basic_json::json_reverse_iterator::base_iterator</a></div><div class="ttdeci">std::reverse_iterator&lt; Base &gt; base_iterator</div><div class="ttdoc">shortcut to the reverse iterator adaptor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06813">json.hpp:6813</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aadb4e5be88221e5e28cdb752332f3d13_html_aadb4e5be88221e5e28cdb752332f3d13"><div class="ttname"><a href="classnlohmann_1_1basic__json_aadb4e5be88221e5e28cdb752332f3d13.html#aadb4e5be88221e5e28cdb752332f3d13">nlohmann::basic_json::insert</a></div><div class="ttdeci">iterator insert(const_iterator pos, std::initializer_list&lt; basic_json &gt; ilist)</div><div class="ttdoc">inserts elements </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04832">json.hpp:4832</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_ac6f4562e16e99b60820d100880b4c3c8_html_ac6f4562e16e99b60820d100880b4c3c8"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_ac6f4562e16e99b60820d100880b4c3c8.html#ac6f4562e16e99b60820d100880b4c3c8">nlohmann::basic_json::const_iterator::const_iterator</a></div><div class="ttdeci">const_iterator(const iterator &amp;other)</div><div class="ttdoc">copy constructor given a nonconst iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06175">json.hpp:6175</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a9d1b58099dc64695fcf2847ab0b2a7c7_html_a9d1b58099dc64695fcf2847ab0b2a7c7"><div class="ttname"><a href="classnlohmann_1_1basic__json_a9d1b58099dc64695fcf2847ab0b2a7c7.html#a9d1b58099dc64695fcf2847ab0b2a7c7">nlohmann::basic_json::pointer</a></div><div class="ttdeci">typename std::allocator_traits&lt; allocator_type &gt;::pointer pointer</div><div class="ttdoc">the type of an element pointer </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00233">json.hpp:233</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a7f7bbb3a9efef2e2442f538a24c1c47b_html_a7f7bbb3a9efef2e2442f538a24c1c47b"><div class="ttname"><a href="classnlohmann_1_1basic__json_a7f7bbb3a9efef2e2442f538a24c1c47b.html#a7f7bbb3a9efef2e2442f538a24c1c47b">nlohmann::basic_json::insert</a></div><div class="ttdeci">iterator insert(const_iterator pos, const basic_json &amp;val)</div><div class="ttdoc">inserts element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04665">json.hpp:4665</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a74a943800c7f103d0990d7eef82c6453_html_a74a943800c7f103d0990d7eef82c6453"><div class="ttname"><a href="classnlohmann_1_1basic__json_a74a943800c7f103d0990d7eef82c6453.html#a74a943800c7f103d0990d7eef82c6453">nlohmann::basic_json::operator&gt;=</a></div><div class="ttdeci">friend bool operator&gt;=(const_reference lhs, const_reference rhs) noexcept</div><div class="ttdoc">comparison: greater than or equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05385">json.hpp:5385</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aacd442b66140c764c594ac8ad7dfd5b3_html_aacd442b66140c764c594ac8ad7dfd5b3"><div class="ttname"><a href="classnlohmann_1_1basic__json_aacd442b66140c764c594ac8ad7dfd5b3.html#aacd442b66140c764c594ac8ad7dfd5b3">nlohmann::basic_json::operator&lt;</a></div><div class="ttdeci">friend bool operator&lt;(const_reference lhs, const_reference rhs) noexcept</div><div class="ttdoc">comparison: less than </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05240">json.hpp:5240</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a050b7fa21051ea57e5b0cc03668b5d4a_html_a050b7fa21051ea57e5b0cc03668b5d4a"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a050b7fa21051ea57e5b0cc03668b5d4a.html#a050b7fa21051ea57e5b0cc03668b5d4a">nlohmann::basic_json::iterator::operator++</a></div><div class="ttdeci">iterator &amp; operator++()</div><div class="ttdoc">pre-increment (++it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06722">json.hpp:6722</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a65f491b515e5967e9c0b40289e3c0ff3_html_a65f491b515e5967e9c0b40289e3c0ff3"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a65f491b515e5967e9c0b40289e3c0ff3.html#a65f491b515e5967e9c0b40289e3c0ff3">nlohmann::basic_json::const_iterator::operator&lt;</a></div><div class="ttdeci">bool operator&lt;(const const_iterator &amp;other) const </div><div class="ttdoc">comparison: smaller </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06472">json.hpp:6472</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a2943e49b3d88e6ee5793c5923ab2ede9_html_a2943e49b3d88e6ee5793c5923ab2ede9"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a2943e49b3d88e6ee5793c5923ab2ede9.html#a2943e49b3d88e6ee5793c5923ab2ede9">nlohmann::basic_json::iterator::operator++</a></div><div class="ttdeci">iterator operator++(int)</div><div class="ttdoc">post-increment (it++) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06714">json.hpp:6714</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a73e150cbcba5643cb89de8f515eb64e2_html_a73e150cbcba5643cb89de8f515eb64e2"><div class="ttname"><a href="classnlohmann_1_1basic__json_a73e150cbcba5643cb89de8f515eb64e2.html#a73e150cbcba5643cb89de8f515eb64e2">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(basic_json &amp;&amp;other) noexcept</div><div class="ttdoc">move constructor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01932">json.hpp:1932</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a6cab1c2ed7e2a014980e2a5717f43a64_html_a6cab1c2ed7e2a014980e2a5717f43a64"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a6cab1c2ed7e2a014980e2a5717f43a64.html#a6cab1c2ed7e2a014980e2a5717f43a64">nlohmann::basic_json::const_iterator::operator--</a></div><div class="ttdeci">const_iterator operator--(int)</div><div class="ttdoc">post-decrement (it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06399">json.hpp:6399</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a626a27f30d6912d7f516eac511fd3362_html_a626a27f30d6912d7f516eac511fd3362"><div class="ttname"><a href="classnlohmann_1_1basic__json_a626a27f30d6912d7f516eac511fd3362.html#a626a27f30d6912d7f516eac511fd3362">nlohmann::basic_json::is_discarded</a></div><div class="ttdeci">bool is_discarded() const noexcept</div><div class="ttdoc">return whether value is discarded </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02351">json.hpp:2351</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a7ed92d56cb313b243c1917696ffdf074_html_a7ed92d56cb313b243c1917696ffdf074"><div class="ttname"><a href="classnlohmann_1_1basic__json_a7ed92d56cb313b243c1917696ffdf074.html#a7ed92d56cb313b243c1917696ffdf074">nlohmann::basic_json::at</a></div><div class="ttdeci">reference at(const typename object_t::key_type &amp;key)</div><div class="ttdoc">access specified object element with bounds checking </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03042">json.hpp:3042</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a3db892729714c4e7eaf60c00ee96e2e9_html_a3db892729714c4e7eaf60c00ee96e2e9"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a3db892729714c4e7eaf60c00ee96e2e9.html#a3db892729714c4e7eaf60c00ee96e2e9">nlohmann::basic_json::iterator::operator=</a></div><div class="ttdeci">iterator &amp; operator=(iterator other) noexcept( std::is_nothrow_move_constructible&lt; pointer &gt;::value and std::is_nothrow_move_assignable&lt; pointer &gt;::value and std::is_nothrow_move_constructible&lt; internal_iterator &gt;::value and std::is_nothrow_move_assignable&lt; internal_iterator &gt;::value )</div><div class="ttdoc">copy assignment </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06690">json.hpp:6690</a></div></div>
2015-12-16 14:12:56 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522_html_a231b02148577b69a154b2ce2c87a5522aa8cfde6331bd59eb2ac96f8911c4b666"><div class="ttname"><a href="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522.html#a231b02148577b69a154b2ce2c87a5522aa8cfde6331bd59eb2ac96f8911c4b666">nlohmann::basic_json::value_t::object</a></div><div class="ttdoc">object (unordered set of name/value pairs) </div></div>
2016-01-26 22:09:25 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_ad5514a7435f246fc5335856465022a7a_html_ad5514a7435f246fc5335856465022a7a"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad5514a7435f246fc5335856465022a7a.html#ad5514a7435f246fc5335856465022a7a">nlohmann::basic_json::max_size</a></div><div class="ttdeci">size_type max_size() const noexcept</div><div class="ttdoc">returns the maximum possible number of elements </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04392">json.hpp:4392</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a947b5b2a832e490858dbdddfe7085831_html_a947b5b2a832e490858dbdddfe7085831"><div class="ttname"><a href="classnlohmann_1_1basic__json_a947b5b2a832e490858dbdddfe7085831.html#a947b5b2a832e490858dbdddfe7085831">nlohmann::basic_json::~basic_json</a></div><div class="ttdeci">~basic_json()</div><div class="ttdoc">destructor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01988">json.hpp:1988</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_ab4f238aa5fcf452b1884b748b0395b1f_html_ab4f238aa5fcf452b1884b748b0395b1f"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_ab4f238aa5fcf452b1884b748b0395b1f.html#ab4f238aa5fcf452b1884b748b0395b1f">nlohmann::basic_json::iterator::operator--</a></div><div class="ttdeci">iterator operator--(int)</div><div class="ttdoc">post-decrement (it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06729">json.hpp:6729</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a790f550ff168095c83c2e459c575916c_html_a790f550ff168095c83c2e459c575916c"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a790f550ff168095c83c2e459c575916c.html#a790f550ff168095c83c2e459c575916c">nlohmann::basic_json::iterator::operator-</a></div><div class="ttdeci">iterator operator-(difference_type i)</div><div class="ttdoc">subtract from iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06766">json.hpp:6766</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_adeb2ff3fdf3cc301b72db109934c9199_html_adeb2ff3fdf3cc301b72db109934c9199"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_adeb2ff3fdf3cc301b72db109934c9199.html#adeb2ff3fdf3cc301b72db109934c9199">nlohmann::basic_json::const_iterator::operator--</a></div><div class="ttdeci">const_iterator &amp; operator--()</div><div class="ttdoc">pre-decrement (it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06407">json.hpp:6407</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ae129dc8ccd58cc3c64614db7d40a7dc9_html_ae129dc8ccd58cc3c64614db7d40a7dc9"><div class="ttname"><a href="classnlohmann_1_1basic__json_ae129dc8ccd58cc3c64614db7d40a7dc9.html#ae129dc8ccd58cc3c64614db7d40a7dc9">nlohmann::basic_json::cend</a></div><div class="ttdeci">const_iterator cend() const </div><div class="ttdoc">returns a const iterator to one past the last element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04090">json.hpp:4090</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a805e3f3a2f374da0e14942eec7400e40_html_a805e3f3a2f374da0e14942eec7400e40"><div class="ttname"><a href="classnlohmann_1_1basic__json_a805e3f3a2f374da0e14942eec7400e40.html#a805e3f3a2f374da0e14942eec7400e40">nlohmann::basic_json::dump</a></div><div class="ttdeci">string_t dump(const int indent=-1) const </div><div class="ttdoc">serialization </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02057">json.hpp:2057</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ac8d45b57874b4a6e9c07f7d3b5daa1f9_html_ac8d45b57874b4a6e9c07f7d3b5daa1f9"><div class="ttname"><a href="classnlohmann_1_1basic__json_ac8d45b57874b4a6e9c07f7d3b5daa1f9.html#ac8d45b57874b4a6e9c07f7d3b5daa1f9">nlohmann::basic_json::value_type</a></div><div class="ttdeci">basic_json value_type</div><div class="ttdoc">the type of elements in a basic_json container </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00217">json.hpp:217</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a9e35475e2027520a78e09f460dbe048a_html_a9e35475e2027520a78e09f460dbe048a"><div class="ttname"><a href="classnlohmann_1_1basic__json_a9e35475e2027520a78e09f460dbe048a.html#a9e35475e2027520a78e09f460dbe048a">nlohmann::basic_json::parser_callback_t</a></div><div class="ttdeci">std::function&lt; bool(int depth, parse_event_t event, basic_json &amp;parsed)&gt; parser_callback_t</div><div class="ttdoc">per-element parser callback type </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00922">json.hpp:922</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aa44ce84b9ac506b905b8fb56c9a0989d_html_aa44ce84b9ac506b905b8fb56c9a0989d"><div class="ttname"><a href="classnlohmann_1_1basic__json_aa44ce84b9ac506b905b8fb56c9a0989d.html#aa44ce84b9ac506b905b8fb56c9a0989d">nlohmann::basic_json::allocator_type</a></div><div class="ttdeci">AllocatorType&lt; basic_json &gt; allocator_type</div><div class="ttdoc">the allocator type </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00230">json.hpp:230</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab63e618bbb0371042b1bec17f5891f42_html_ab63e618bbb0371042b1bec17f5891f42"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab63e618bbb0371042b1bec17f5891f42.html#ab63e618bbb0371042b1bec17f5891f42">nlohmann::basic_json::string_t</a></div><div class="ttdeci">StringType string_t</div><div class="ttdoc">a type for a string </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00447">json.hpp:447</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a80c21170db6b5ffd9274b3f351cebadc_html_a80c21170db6b5ffd9274b3f351cebadc"><div class="ttname"><a href="classnlohmann_1_1basic__json_a80c21170db6b5ffd9274b3f351cebadc.html#a80c21170db6b5ffd9274b3f351cebadc">nlohmann::basic_json::operator+=</a></div><div class="ttdeci">reference operator+=(const basic_json &amp;val)</div><div class="ttdoc">add an object to an array </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04587">json.hpp:4587</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a4cf971f099c8114bb96c9d1c93e683f3_html_a4cf971f099c8114bb96c9d1c93e683f3"><div class="ttname"><a href="classnlohmann_1_1basic__json_a4cf971f099c8114bb96c9d1c93e683f3.html#a4cf971f099c8114bb96c9d1c93e683f3">nlohmann::basic_json::begin</a></div><div class="ttdeci">iterator begin()</div><div class="ttdoc">returns an iterator to the first element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03997">json.hpp:3997</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a5e4d98a8f95e2eccde8cd48c19efa196_html_a5e4d98a8f95e2eccde8cd48c19efa196"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a5e4d98a8f95e2eccde8cd48c19efa196.html#a5e4d98a8f95e2eccde8cd48c19efa196">nlohmann::basic_json::const_iterator::operator-</a></div><div class="ttdeci">difference_type operator-(const const_iterator &amp;other) const </div><div class="ttdoc">return difference </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06570">json.hpp:6570</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a3ec8e17be8732fe436e9d6733f52b7a3_html_a3ec8e17be8732fe436e9d6733f52b7a3"><div class="ttname"><a href="classnlohmann_1_1basic__json_a3ec8e17be8732fe436e9d6733f52b7a3.html#a3ec8e17be8732fe436e9d6733f52b7a3">nlohmann::basic_json::reference</a></div><div class="ttdeci">value_type &amp; reference</div><div class="ttdoc">the type of an element reference </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00220">json.hpp:220</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad534f6d0d48bfd1d85f72d7f1b62a46d_html_ad534f6d0d48bfd1d85f72d7f1b62a46d"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad534f6d0d48bfd1d85f72d7f1b62a46d.html#ad534f6d0d48bfd1d85f72d7f1b62a46d">nlohmann::basic_json::begin</a></div><div class="ttdeci">const_iterator begin() const </div><div class="ttdoc">returns a const iterator to the first element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04007">json.hpp:4007</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a34d6a60dd99e9f33b8273a1c8db5669b_html_a34d6a60dd99e9f33b8273a1c8db5669b"><div class="ttname"><a href="classnlohmann_1_1basic__json_a34d6a60dd99e9f33b8273a1c8db5669b.html#a34d6a60dd99e9f33b8273a1c8db5669b">nlohmann::basic_json::operator&gt;&gt;</a></div><div class="ttdeci">friend std::ostream &amp; operator&gt;&gt;(const basic_json &amp;j, std::ostream &amp;o)</div><div class="ttdoc">serialize to stream </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05440">json.hpp:5440</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a9f3940ac5fb2c6ff8045ed59b8a0866f_html_a9f3940ac5fb2c6ff8045ed59b8a0866f"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a9f3940ac5fb2c6ff8045ed59b8a0866f.html#a9f3940ac5fb2c6ff8045ed59b8a0866f">nlohmann::basic_json::iterator::operator-</a></div><div class="ttdeci">difference_type operator-(const iterator &amp;other) const </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06773">json.hpp:6773</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a5339f60209573ede87534b282c09fbd5_html_a5339f60209573ede87534b282c09fbd5"><div class="ttname"><a href="classnlohmann_1_1basic__json_a5339f60209573ede87534b282c09fbd5.html#a5339f60209573ede87534b282c09fbd5">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const int val)</div><div class="ttdoc">create an integer number from an enum type (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01300">json.hpp:1300</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a1de0975e812c83e74d118b3e1063f335_html_a1de0975e812c83e74d118b3e1063f335"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a1de0975e812c83e74d118b3e1063f335.html#a1de0975e812c83e74d118b3e1063f335">nlohmann::basic_json::iterator::iterator</a></div><div class="ttdeci">iterator(const iterator &amp;other) noexcept</div><div class="ttdoc">copy constructor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06685">json.hpp:6685</a></div></div>
2016-01-25 00:34:43 +03:00
<div class="ttc" id="namespacenlohmann_html"><div class="ttname"><a href="namespacenlohmann.html">nlohmann</a></div><div class="ttdoc">namespace for Niels Lohmann </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00088">json.hpp:88</a></div></div>
2016-01-26 22:09:25 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a49d7c3e9ef3280df03052cce988b792f_html_a49d7c3e9ef3280df03052cce988b792f"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a49d7c3e9ef3280df03052cce988b792f.html#a49d7c3e9ef3280df03052cce988b792f">nlohmann::basic_json::const_iterator::difference_type</a></div><div class="ttdeci">typename basic_json::difference_type difference_type</div><div class="ttdoc">a type to represent differences between iterators </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06136">json.hpp:6136</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a86089c703a2e563b9f760c2f8408efa7_html_a86089c703a2e563b9f760c2f8408efa7"><div class="ttname"><a href="classnlohmann_1_1basic__json_a86089c703a2e563b9f760c2f8408efa7.html#a86089c703a2e563b9f760c2f8408efa7">nlohmann::basic_json::swap</a></div><div class="ttdeci">void swap(string_t &amp;other)</div><div class="ttdoc">exchanges the values </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04969">json.hpp:4969</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a53407187cceeb3ee5390318713dad827_html_a53407187cceeb3ee5390318713dad827"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a53407187cceeb3ee5390318713dad827.html#a53407187cceeb3ee5390318713dad827">nlohmann::basic_json::json_reverse_iterator::json_reverse_iterator</a></div><div class="ttdeci">json_reverse_iterator(const base_iterator &amp;it)</div><div class="ttdoc">create reverse iterator from base class </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06823">json.hpp:6823</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a197631f31d9b17285bf9f4c156fe49c2_html_a197631f31d9b17285bf9f4c156fe49c2"><div class="ttname"><a href="classnlohmann_1_1basic__json_a197631f31d9b17285bf9f4c156fe49c2.html#a197631f31d9b17285bf9f4c156fe49c2">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const number_integer_t val)</div><div class="ttdoc">create an integer number (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01271">json.hpp:1271</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad101425649dbc5c2e851fdb52c31741d_html_ad101425649dbc5c2e851fdb52c31741d"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad101425649dbc5c2e851fdb52c31741d.html#ad101425649dbc5c2e851fdb52c31741d">nlohmann::basic_json::rend</a></div><div class="ttdeci">reverse_iterator rend()</div><div class="ttdoc">returns an iterator to the reverse-end </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04145">json.hpp:4145</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ad2eddc2c13ab084f067eaba65d381ad2_html_ad2eddc2c13ab084f067eaba65d381ad2"><div class="ttname"><a href="classnlohmann_1_1basic__json_ad2eddc2c13ab084f067eaba65d381ad2.html#ad2eddc2c13ab084f067eaba65d381ad2">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const CompatibleNumberIntegerType val) noexcept</div><div class="ttdoc">create an integer number (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01337">json.hpp:1337</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a8032645ce3109a7a4899badd90fa3480_html_a8032645ce3109a7a4899badd90fa3480"><div class="ttname"><a href="classnlohmann_1_1basic__json_a8032645ce3109a7a4899badd90fa3480.html#a8032645ce3109a7a4899badd90fa3480">nlohmann::basic_json::front</a></div><div class="ttdeci">const_reference front() const </div><div class="ttdoc">access the first element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03557">json.hpp:3557</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_acb6cd0ff760933afeb7f93e5207f3646_html_acb6cd0ff760933afeb7f93e5207f3646"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_acb6cd0ff760933afeb7f93e5207f3646.html#acb6cd0ff760933afeb7f93e5207f3646">nlohmann::basic_json::const_iterator::operator&gt;</a></div><div class="ttdeci">bool operator&gt;(const const_iterator &amp;other) const </div><div class="ttdoc">comparison: greater than </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06508">json.hpp:6508</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a8969119432218155193bb1dac30aa4ff_html_a8969119432218155193bb1dac30aa4ff"><div class="ttname"><a href="classnlohmann_1_1basic__json_a8969119432218155193bb1dac30aa4ff.html#a8969119432218155193bb1dac30aa4ff">nlohmann::basic_json::is_object</a></div><div class="ttdeci">bool is_object() const noexcept</div><div class="ttdoc">return whether value is an object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02289">json.hpp:2289</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a8be837e4d902887676dd837abe9098d3_html_a8be837e4d902887676dd837abe9098d3"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a8be837e4d902887676dd837abe9098d3.html#a8be837e4d902887676dd837abe9098d3">nlohmann::basic_json::const_iterator::operator-&gt;</a></div><div class="ttdeci">pointer operator-&gt;() const </div><div class="ttdoc">dereference the iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06327">json.hpp:6327</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a74a0013e847fdc574b48f931f0e757e1_html_a74a0013e847fdc574b48f931f0e757e1"><div class="ttname"><a href="classnlohmann_1_1basic__json_a74a0013e847fdc574b48f931f0e757e1.html#a74a0013e847fdc574b48f931f0e757e1">nlohmann::basic_json::number_float_t</a></div><div class="ttdeci">NumberFloatType number_float_t</div><div class="ttdoc">a type for a number (floating-point) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00684">json.hpp:684</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_af77614992e38b355b9213940051cc582_html_af77614992e38b355b9213940051cc582"><div class="ttname"><a href="classnlohmann_1_1basic__json_af77614992e38b355b9213940051cc582.html#af77614992e38b355b9213940051cc582">nlohmann::basic_json::swap</a></div><div class="ttdeci">void swap(reference other) noexcept( std::is_nothrow_move_constructible&lt; value_t &gt;::value and std::is_nothrow_move_assignable&lt; value_t &gt;::value and std::is_nothrow_move_constructible&lt; json_value &gt;::value and std::is_nothrow_move_assignable&lt; json_value &gt;::value )</div><div class="ttdoc">exchanges the values </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04870">json.hpp:4870</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522_html_a231b02148577b69a154b2ce2c87a5522"><div class="ttname"><a href="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522.html#a231b02148577b69a154b2ce2c87a5522">nlohmann::basic_json::value_t</a></div><div class="ttdeci">value_t</div><div class="ttdoc">the JSON type enumeration </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00703">json.hpp:703</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a0a60ef55808edb545f4f46e49656d035_html_a0a60ef55808edb545f4f46e49656d035"><div class="ttname"><a href="classnlohmann_1_1basic__json_a0a60ef55808edb545f4f46e49656d035.html#a0a60ef55808edb545f4f46e49656d035">nlohmann::basic_json::rend</a></div><div class="ttdeci">const_reverse_iterator rend() const </div><div class="ttdoc">returns a const reverse iterator to one before the first </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04153">json.hpp:4153</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aec316934a555dd1acdd3600e5d4a4cdf_html_aec316934a555dd1acdd3600e5d4a4cdf"><div class="ttname"><a href="classnlohmann_1_1basic__json_aec316934a555dd1acdd3600e5d4a4cdf.html#aec316934a555dd1acdd3600e5d4a4cdf">nlohmann::basic_json::difference_type</a></div><div class="ttdeci">std::ptrdiff_t difference_type</div><div class="ttdoc">a type to represent differences between iterators </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00225">json.hpp:225</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab856bebfdfbcf45061f1474ea8ba9924_html_ab856bebfdfbcf45061f1474ea8ba9924"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab856bebfdfbcf45061f1474ea8ba9924.html#ab856bebfdfbcf45061f1474ea8ba9924">nlohmann::basic_json::is_primitive</a></div><div class="ttdeci">bool is_primitive() const noexcept</div><div class="ttdoc">return whether type is primitive </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02109">json.hpp:2109</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a20bfb2ca6d4c421c74bb3e53328cd437_html_a20bfb2ca6d4c421c74bb3e53328cd437"><div class="ttname"><a href="classnlohmann_1_1basic__json_a20bfb2ca6d4c421c74bb3e53328cd437.html#a20bfb2ca6d4c421c74bb3e53328cd437">nlohmann::basic_json::get</a></div><div class="ttdeci">ValueType get() const </div><div class="ttdoc">get a value (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02720">json.hpp:2720</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a8209621de6184d9eabe136b7c8f61935_html_a8209621de6184d9eabe136b7c8f61935"><div class="ttname"><a href="classnlohmann_1_1basic__json_a8209621de6184d9eabe136b7c8f61935.html#a8209621de6184d9eabe136b7c8f61935">nlohmann::basic_json::swap</a></div><div class="ttdeci">void swap(array_t &amp;other)</div><div class="ttdoc">exchanges the values </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04901">json.hpp:4901</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a263a9ecde33a1f2ff63dcd15d5e42cb7_html_a263a9ecde33a1f2ff63dcd15d5e42cb7"><div class="ttname"><a href="classnlohmann_1_1basic__json_a263a9ecde33a1f2ff63dcd15d5e42cb7.html#a263a9ecde33a1f2ff63dcd15d5e42cb7">nlohmann::basic_json::erase</a></div><div class="ttdeci">InteratorType erase(InteratorType first, InteratorType last)</div><div class="ttdoc">remove elements given an iterator range </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03756">json.hpp:3756</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a0a2cbbd95862a623e7dc5c37e67dead0_html_a0a2cbbd95862a623e7dc5c37e67dead0"><div class="ttname"><a href="classnlohmann_1_1basic__json_a0a2cbbd95862a623e7dc5c37e67dead0.html#a0a2cbbd95862a623e7dc5c37e67dead0">nlohmann::basic_json::value</a></div><div class="ttdeci">ValueType value(const typename object_t::key_type &amp;key, ValueType default_value) const </div><div class="ttdoc">access specified object element with default value </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03498">json.hpp:3498</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a7265535f39299824f9712a2ca15013c3_html_a7265535f39299824f9712a2ca15013c3"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a7265535f39299824f9712a2ca15013c3.html#a7265535f39299824f9712a2ca15013c3">nlohmann::basic_json::json_reverse_iterator::reference</a></div><div class="ttdeci">typename Base::reference reference</div><div class="ttdoc">the reference type for the pointed-to element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06815">json.hpp:6815</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a098482190447461f47f80b99bf2519f6_html_a098482190447461f47f80b99bf2519f6"><div class="ttname"><a href="classnlohmann_1_1basic__json_a098482190447461f47f80b99bf2519f6.html#a098482190447461f47f80b99bf2519f6">nlohmann::basic_json::back</a></div><div class="ttdeci">const_reference back() const </div><div class="ttdoc">access the last element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03593">json.hpp:3593</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a486b96adbf4886c38e38c952394a220f_html_a486b96adbf4886c38e38c952394a220f"><div class="ttname"><a href="classnlohmann_1_1basic__json_a486b96adbf4886c38e38c952394a220f.html#a486b96adbf4886c38e38c952394a220f">nlohmann::basic_json::push_back</a></div><div class="ttdeci">void push_back(basic_json &amp;&amp;val)</div><div class="ttdoc">add an object to an array </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04527">json.hpp:4527</a></div></div>
2015-12-16 14:12:56 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522_html_a231b02148577b69a154b2ce2c87a5522af1f713c9e000f5d3f280adbd124df4f5"><div class="ttname"><a href="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522.html#a231b02148577b69a154b2ce2c87a5522af1f713c9e000f5d3f280adbd124df4f5">nlohmann::basic_json::value_t::array</a></div><div class="ttdoc">array (ordered collection of values) </div></div>
2016-01-26 22:09:25 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a4aede52d6ee253a510897518b59e09c0_html_a4aede52d6ee253a510897518b59e09c0"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a4aede52d6ee253a510897518b59e09c0.html#a4aede52d6ee253a510897518b59e09c0">nlohmann::basic_json::json_reverse_iterator::operator++</a></div><div class="ttdeci">json_reverse_iterator &amp; operator++()</div><div class="ttdoc">pre-increment (++it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06834">json.hpp:6834</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a13c4d2ab4e7ee2f92be785a7b12948ff_html_a13c4d2ab4e7ee2f92be785a7b12948ff"><div class="ttname"><a href="classnlohmann_1_1basic__json_a13c4d2ab4e7ee2f92be785a7b12948ff.html#a13c4d2ab4e7ee2f92be785a7b12948ff">nlohmann::basic_json::parse</a></div><div class="ttdeci">static basic_json parse(std::istream &amp;i, parser_callback_t cb=nullptr)</div><div class="ttdoc">deserialize from stream </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05508">json.hpp:5508</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a122640e7e2db1814fc7bbb3c122ec76e_html_a122640e7e2db1814fc7bbb3c122ec76e"><div class="ttname"><a href="classnlohmann_1_1basic__json_a122640e7e2db1814fc7bbb3c122ec76e.html#a122640e7e2db1814fc7bbb3c122ec76e">nlohmann::basic_json::operator==</a></div><div class="ttdeci">friend bool operator==(const_reference lhs, const_reference rhs) noexcept</div><div class="ttdoc">comparison: equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05050">json.hpp:5050</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_af071057ebab57744f5767eb369e99d42_html_af071057ebab57744f5767eb369e99d42"><div class="ttname"><a href="classnlohmann_1_1basic__json_af071057ebab57744f5767eb369e99d42.html#af071057ebab57744f5767eb369e99d42">nlohmann::basic_json::value</a></div><div class="ttdeci">string_t value(const typename object_t::key_type &amp;key, const char *default_value) const </div><div class="ttdoc">overload for a default value of type const char* </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03524">json.hpp:3524</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aa669d997ddc03566de5438781254b32b_html_aa669d997ddc03566de5438781254b32b"><div class="ttname"><a href="classnlohmann_1_1basic__json_aa669d997ddc03566de5438781254b32b.html#aa669d997ddc03566de5438781254b32b">nlohmann::basic_json::get_ref</a></div><div class="ttdeci">ReferenceType get_ref() const </div><div class="ttdoc">get a reference value (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02870">json.hpp:2870</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a68a5f34b164a07b8ced13fcf2b7ec834_html_a68a5f34b164a07b8ced13fcf2b7ec834"><div class="ttname"><a href="classnlohmann_1_1basic__json_a68a5f34b164a07b8ced13fcf2b7ec834.html#a68a5f34b164a07b8ced13fcf2b7ec834">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const CompatibleNumberUnsignedType val) noexcept</div><div class="ttdoc">create an unsigned number (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01396">json.hpp:1396</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a72761de693f95edc195956197f4e5569_html_a72761de693f95edc195956197f4e5569"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a72761de693f95edc195956197f4e5569.html#a72761de693f95edc195956197f4e5569">nlohmann::basic_json::const_iterator::const_iterator</a></div><div class="ttdeci">const_iterator(pointer object)</div><div class="ttdoc">constructor for a given JSON instance </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06148">json.hpp:6148</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_ab3029a1a83cf46dc28ad443bbad0c74d_html_ab3029a1a83cf46dc28ad443bbad0c74d"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_ab3029a1a83cf46dc28ad443bbad0c74d.html#ab3029a1a83cf46dc28ad443bbad0c74d">nlohmann::basic_json::const_iterator::operator*</a></div><div class="ttdeci">reference operator*() const </div><div class="ttdoc">return a reference to the value pointed to by the iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06287">json.hpp:6287</a></div></div>
2015-12-16 14:12:56 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522_html_a231b02148577b69a154b2ce2c87a5522a37a6259cc0c1dae299a7866489dff0bd"><div class="ttname"><a href="classnlohmann_1_1basic__json_a231b02148577b69a154b2ce2c87a5522.html#a231b02148577b69a154b2ce2c87a5522a37a6259cc0c1dae299a7866489dff0bd">nlohmann::basic_json::value_t::null</a></div><div class="ttdoc">null value </div></div>
2016-01-26 22:09:25 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_aac185a137428a7337aa620de07bfbbd7_html_aac185a137428a7337aa620de07bfbbd7"><div class="ttname"><a href="classnlohmann_1_1basic__json_aac185a137428a7337aa620de07bfbbd7.html#aac185a137428a7337aa620de07bfbbd7">nlohmann::basic_json::operator&lt;</a></div><div class="ttdeci">friend bool operator&lt;(const value_t lhs, const value_t rhs)</div><div class="ttdoc">comparison operator for JSON types </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05003">json.hpp:5003</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_af12127e6fe8adbe727081f188aa599e2_html_af12127e6fe8adbe727081f188aa599e2"><div class="ttname"><a href="classnlohmann_1_1basic__json_af12127e6fe8adbe727081f188aa599e2.html#af12127e6fe8adbe727081f188aa599e2">nlohmann::basic_json::get_ptr</a></div><div class="ttdeci">const PointerType get_ptr() const noexcept</div><div class="ttdoc">get a pointer value (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02819">json.hpp:2819</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ae347859ec88176ef76a0cbe5b4514fcf_html_ae347859ec88176ef76a0cbe5b4514fcf"><div class="ttname"><a href="classnlohmann_1_1basic__json_ae347859ec88176ef76a0cbe5b4514fcf.html#ae347859ec88176ef76a0cbe5b4514fcf">nlohmann::basic_json::operator!=</a></div><div class="ttdeci">friend bool operator!=(const_reference v, std::nullptr_t) noexcept</div><div class="ttdoc">comparison: not equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05202">json.hpp:5202</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a56952f8d5702541f0d88e6a764d2ae36_html_a56952f8d5702541f0d88e6a764d2ae36"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a56952f8d5702541f0d88e6a764d2ae36.html#a56952f8d5702541f0d88e6a764d2ae36">nlohmann::basic_json::iterator::operator+</a></div><div class="ttdeci">iterator operator+(difference_type i)</div><div class="ttdoc">add to iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06758">json.hpp:6758</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a4bbdfd6dd8d2e6fc9ac5d81ef61ba3fe_html_a4bbdfd6dd8d2e6fc9ac5d81ef61ba3fe"><div class="ttname"><a href="classnlohmann_1_1basic__json_a4bbdfd6dd8d2e6fc9ac5d81ef61ba3fe.html#a4bbdfd6dd8d2e6fc9ac5d81ef61ba3fe">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const CompatibleNumberFloatType val) noexcept</div><div class="ttdoc">create an floating-point number (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01471">json.hpp:1471</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a6b682f09787eff62f03493d45aa05902_html_a6b682f09787eff62f03493d45aa05902"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a6b682f09787eff62f03493d45aa05902.html#a6b682f09787eff62f03493d45aa05902">nlohmann::basic_json::const_iterator::operator&lt;=</a></div><div class="ttdeci">bool operator&lt;=(const const_iterator &amp;other) const </div><div class="ttdoc">comparison: less than or equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06502">json.hpp:6502</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a45e789042a23138eba2b69f34df9fc45_html_a45e789042a23138eba2b69f34df9fc45"><div class="ttname"><a href="classnlohmann_1_1basic__json_a45e789042a23138eba2b69f34df9fc45.html#a45e789042a23138eba2b69f34df9fc45">nlohmann::basic_json::erase</a></div><div class="ttdeci">InteratorType erase(InteratorType pos)</div><div class="ttdoc">remove element given an iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03650">json.hpp:3650</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_afeb998aec45296bc2050bd1c41ef41eb_html_afeb998aec45296bc2050bd1c41ef41eb"><div class="ttname"><a href="classnlohmann_1_1basic__json_afeb998aec45296bc2050bd1c41ef41eb.html#afeb998aec45296bc2050bd1c41ef41eb">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(std::initializer_list&lt; basic_json &gt; init, bool type_deduction=true, value_t manual_type=value_t::array)</div><div class="ttdoc">create a container (array or object) from an initializer list </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01544">json.hpp:1544</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_a085fe0d8cf459b5b1ae7b518b933ae7d_html_a085fe0d8cf459b5b1ae7b518b933ae7d"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_a085fe0d8cf459b5b1ae7b518b933ae7d.html#a085fe0d8cf459b5b1ae7b518b933ae7d">nlohmann::basic_json::iterator::iterator</a></div><div class="ttdeci">iterator(pointer object) noexcept</div><div class="ttdoc">constructor for a given JSON instance </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06680">json.hpp:6680</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a7f97a91ad8f1d5cf0b9213bd24f247c4_html_a7f97a91ad8f1d5cf0b9213bd24f247c4"><div class="ttname"><a href="classnlohmann_1_1basic__json_a7f97a91ad8f1d5cf0b9213bd24f247c4.html#a7f97a91ad8f1d5cf0b9213bd24f247c4">nlohmann::basic_json::operator!=</a></div><div class="ttdeci">friend bool operator!=(std::nullptr_t, const_reference v) noexcept</div><div class="ttdoc">comparison: not equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05211">json.hpp:5211</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a7c5e0d3bd0e1a2ba9226b7eb539a53d6_html_a7c5e0d3bd0e1a2ba9226b7eb539a53d6"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a7c5e0d3bd0e1a2ba9226b7eb539a53d6.html#a7c5e0d3bd0e1a2ba9226b7eb539a53d6">nlohmann::basic_json::json_reverse_iterator::json_reverse_iterator</a></div><div class="ttdeci">json_reverse_iterator(const typename base_iterator::iterator_type &amp;it)</div><div class="ttdoc">create reverse iterator from iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06818">json.hpp:6818</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a8fbb15efd97599209a7def77af8e748e_html_a8fbb15efd97599209a7def77af8e748e"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a8fbb15efd97599209a7def77af8e748e.html#a8fbb15efd97599209a7def77af8e748e">nlohmann::basic_json::const_iterator::operator++</a></div><div class="ttdeci">const_iterator &amp; operator++()</div><div class="ttdoc">pre-increment (++it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06370">json.hpp:6370</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a5d288e4e8828c2ef03a4f9958ce3d175_html_a5d288e4e8828c2ef03a4f9958ce3d175"><div class="ttname"><a href="classnlohmann_1_1basic__json_a5d288e4e8828c2ef03a4f9958ce3d175.html#a5d288e4e8828c2ef03a4f9958ce3d175">nlohmann::basic_json::is_number_float</a></div><div class="ttdeci">bool is_number_float() const noexcept</div><div class="ttdoc">return whether value is a floating-point number </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02270">json.hpp:2270</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_ac75e80d30b6169ee2a29ec93fb4d2acd_html_ac75e80d30b6169ee2a29ec93fb4d2acd"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_ac75e80d30b6169ee2a29ec93fb4d2acd.html#ac75e80d30b6169ee2a29ec93fb4d2acd">nlohmann::basic_json::const_iterator::value</a></div><div class="ttdeci">reference value() const </div><div class="ttdoc">return the value of an iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06645">json.hpp:6645</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a821560d64f50525162097f19b1392e7f_html_a821560d64f50525162097f19b1392e7f"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a821560d64f50525162097f19b1392e7f.html#a821560d64f50525162097f19b1392e7f">nlohmann::basic_json::const_iterator::iterator_category</a></div><div class="ttdeci">std::bidirectional_iterator_tag iterator_category</div><div class="ttdoc">the category of the iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06142">json.hpp:6142</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a115fae3dd8ae02669fedae0545ce1cbc_html_a115fae3dd8ae02669fedae0545ce1cbc"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a115fae3dd8ae02669fedae0545ce1cbc.html#a115fae3dd8ae02669fedae0545ce1cbc">nlohmann::basic_json::json_reverse_iterator::operator-</a></div><div class="ttdeci">difference_type operator-(const json_reverse_iterator &amp;other) const </div><div class="ttdoc">return difference </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06877">json.hpp:6877</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aaa687595d7627925fbf6d6eb97e2021e_html_aaa687595d7627925fbf6d6eb97e2021e"><div class="ttname"><a href="classnlohmann_1_1basic__json_aaa687595d7627925fbf6d6eb97e2021e.html#aaa687595d7627925fbf6d6eb97e2021e">nlohmann::basic_json::find</a></div><div class="ttdeci">const_iterator find(typename object_t::key_type key) const </div><div class="ttdoc">find an element in a JSON object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03931">json.hpp:3931</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab7be2bc58ae0c2c2c30d40f15d6399f8_html_ab7be2bc58ae0c2c2c30d40f15d6399f8"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab7be2bc58ae0c2c2c30d40f15d6399f8.html#ab7be2bc58ae0c2c2c30d40f15d6399f8">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const CompatibleObjectType &amp;val)</div><div class="ttdoc">create an object (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01070">json.hpp:1070</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a87db51b6b936fb2ea293cdbc8702dcb8_html_a87db51b6b936fb2ea293cdbc8702dcb8"><div class="ttname"><a href="classnlohmann_1_1basic__json_a87db51b6b936fb2ea293cdbc8702dcb8.html#a87db51b6b936fb2ea293cdbc8702dcb8">nlohmann::basic_json::operator&gt;</a></div><div class="ttdeci">friend bool operator&gt;(const_reference lhs, const_reference rhs) noexcept</div><div class="ttdoc">comparison: greater than </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05363">json.hpp:5363</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_af6941c3711dabb2e64960dd57e00d201_html_af6941c3711dabb2e64960dd57e00d201"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_af6941c3711dabb2e64960dd57e00d201.html#af6941c3711dabb2e64960dd57e00d201">nlohmann::basic_json::const_iterator::operator&gt;=</a></div><div class="ttdeci">bool operator&gt;=(const const_iterator &amp;other) const </div><div class="ttdoc">comparison: greater than or equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06514">json.hpp:6514</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a5521515067b6597cb0b55a9c547a7a2b_html_a5521515067b6597cb0b55a9c547a7a2b"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a5521515067b6597cb0b55a9c547a7a2b.html#a5521515067b6597cb0b55a9c547a7a2b">nlohmann::basic_json::const_iterator::operator=</a></div><div class="ttdeci">const_iterator &amp; operator=(const_iterator other) noexcept( std::is_nothrow_move_constructible&lt; pointer &gt;::value and std::is_nothrow_move_assignable&lt; pointer &gt;::value and std::is_nothrow_move_constructible&lt; internal_iterator &gt;::value and std::is_nothrow_move_assignable&lt; internal_iterator &gt;::value )</div><div class="ttdoc">copy assignment </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06207">json.hpp:6207</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aa36e72ffc3241b960fe9186d19e03bc3_html_aa36e72ffc3241b960fe9186d19e03bc3"><div class="ttname"><a href="classnlohmann_1_1basic__json_aa36e72ffc3241b960fe9186d19e03bc3.html#aa36e72ffc3241b960fe9186d19e03bc3">nlohmann::basic_json::erase</a></div><div class="ttdeci">size_type erase(const typename object_t::key_type &amp;key)</div><div class="ttdoc">remove element from a JSON object given a key </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03840">json.hpp:3840</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a92fbb711a36b5ce78ee228b26787c034_html_a92fbb711a36b5ce78ee228b26787c034"><div class="ttname"><a href="classnlohmann_1_1basic__json_a92fbb711a36b5ce78ee228b26787c034.html#a92fbb711a36b5ce78ee228b26787c034">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">reference operator[](const typename object_t::key_type &amp;key)</div><div class="ttdoc">access specified object element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03223">json.hpp:3223</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a5d4320e24fcb7df041ff2c95d976dba0_html_a5d4320e24fcb7df041ff2c95d976dba0"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a5d4320e24fcb7df041ff2c95d976dba0.html#a5d4320e24fcb7df041ff2c95d976dba0">nlohmann::basic_json::const_iterator::key</a></div><div class="ttdeci">object_t::key_type key() const </div><div class="ttdoc">return the key of an object iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06630">json.hpp:6630</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_abc13258393358cb75a32fac86480bc9c_html_abc13258393358cb75a32fac86480bc9c"><div class="ttname"><a href="classnlohmann_1_1basic__json_abc13258393358cb75a32fac86480bc9c.html#abc13258393358cb75a32fac86480bc9c">nlohmann::basic_json::end</a></div><div class="ttdeci">const_iterator end() const </div><div class="ttdoc">returns a const iterator to one past the last element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04066">json.hpp:4066</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a1c1aa2d148a3e4ce0d4e50cf5b894f41_html_a1c1aa2d148a3e4ce0d4e50cf5b894f41"><div class="ttname"><a href="classnlohmann_1_1basic__json_a1c1aa2d148a3e4ce0d4e50cf5b894f41.html#a1c1aa2d148a3e4ce0d4e50cf5b894f41">nlohmann::basic_json::operator+=</a></div><div class="ttdeci">reference operator+=(basic_json &amp;&amp;val)</div><div class="ttdoc">add an object to an array </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04553">json.hpp:4553</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a7bd530bfbbc58ac77308c087120c21fa_html_a7bd530bfbbc58ac77308c087120c21fa"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a7bd530bfbbc58ac77308c087120c21fa.html#a7bd530bfbbc58ac77308c087120c21fa">nlohmann::basic_json::const_iterator::operator[]</a></div><div class="ttdeci">reference operator[](difference_type n) const </div><div class="ttdoc">access to successor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06594">json.hpp:6594</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_html"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator.html">nlohmann::basic_json::const_iterator</a></div><div class="ttdoc">a const random access iterator for the basic_json class </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06127">json.hpp:6127</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_html"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator.html">nlohmann::basic_json::json_reverse_iterator</a></div><div class="ttdoc">a template for a reverse iterator class </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00238">json.hpp:238</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_aefd248cac6493eed1e6ff53ba6a63eb2_html_aefd248cac6493eed1e6ff53ba6a63eb2"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_aefd248cac6493eed1e6ff53ba6a63eb2.html#aefd248cac6493eed1e6ff53ba6a63eb2">nlohmann::basic_json::const_iterator::reference</a></div><div class="ttdeci">typename basic_json::const_reference reference</div><div class="ttdoc">defines a reference to the type iterated over (value_type) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06140">json.hpp:6140</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a545a8204cfd6836eb85abc3113a0bb28_html_a545a8204cfd6836eb85abc3113a0bb28"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a545a8204cfd6836eb85abc3113a0bb28.html#a545a8204cfd6836eb85abc3113a0bb28">nlohmann::basic_json::json_reverse_iterator::operator++</a></div><div class="ttdeci">json_reverse_iterator operator++(int)</div><div class="ttdoc">post-increment (it++) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06828">json.hpp:6828</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a9730b9f7bc2150e641fe20198d4477c7_html_a9730b9f7bc2150e641fe20198d4477c7"><div class="ttname"><a href="classnlohmann_1_1basic__json_a9730b9f7bc2150e641fe20198d4477c7.html#a9730b9f7bc2150e641fe20198d4477c7">nlohmann::basic_json::operator==</a></div><div class="ttdeci">friend bool operator==(const_reference v, std::nullptr_t) noexcept</div><div class="ttdoc">comparison: equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05149">json.hpp:5149</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a59732a1de287a7301cca19a7a7748159_html_a59732a1de287a7301cca19a7a7748159"><div class="ttname"><a href="classnlohmann_1_1basic__json_a59732a1de287a7301cca19a7a7748159.html#a59732a1de287a7301cca19a7a7748159">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">reference operator[](size_type idx)</div><div class="ttdoc">access specified array element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03137">json.hpp:3137</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a9e4c6e48e3c2f3ff357ef8215b8c8fca_html_a9e4c6e48e3c2f3ff357ef8215b8c8fca"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a9e4c6e48e3c2f3ff357ef8215b8c8fca.html#a9e4c6e48e3c2f3ff357ef8215b8c8fca">nlohmann::basic_json::const_iterator::operator!=</a></div><div class="ttdeci">bool operator!=(const const_iterator &amp;other) const </div><div class="ttdoc">comparison: not equal </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06466">json.hpp:6466</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a9accc9dd9f9033f50c0ab6bcf337ffe0_html_a9accc9dd9f9033f50c0ab6bcf337ffe0"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1json__reverse__iterator_a9accc9dd9f9033f50c0ab6bcf337ffe0.html#a9accc9dd9f9033f50c0ab6bcf337ffe0">nlohmann::basic_json::json_reverse_iterator::operator+=</a></div><div class="ttdeci">json_reverse_iterator &amp; operator+=(difference_type i)</div><div class="ttdoc">add to iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06854">json.hpp:6854</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a214a8c22d616fd3567b88932c07436c9_html_a214a8c22d616fd3567b88932c07436c9"><div class="ttname"><a href="classnlohmann_1_1basic__json_a214a8c22d616fd3567b88932c07436c9.html#a214a8c22d616fd3567b88932c07436c9">nlohmann::basic_json::at</a></div><div class="ttdeci">reference at(size_type idx)</div><div class="ttdoc">access specified array element with bounds checking </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02950">json.hpp:2950</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a01833b332b68d9af1f7cd7a816c39e49_html_a01833b332b68d9af1f7cd7a816c39e49"><div class="ttname"><a href="classnlohmann_1_1basic__json_a01833b332b68d9af1f7cd7a816c39e49.html#a01833b332b68d9af1f7cd7a816c39e49">nlohmann::basic_json::size</a></div><div class="ttdeci">size_type size() const noexcept</div><div class="ttdoc">returns the number of elements </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04330">json.hpp:4330</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ab936779c70bec68343ef440ed13251e5_html_ab936779c70bec68343ef440ed13251e5"><div class="ttname"><a href="classnlohmann_1_1basic__json_ab936779c70bec68343ef440ed13251e5.html#ab936779c70bec68343ef440ed13251e5">nlohmann::basic_json::iterator_wrapper</a></div><div class="ttdeci">static iteration_proxy&lt; iterator &gt; iterator_wrapper(reference cont)</div><div class="ttdoc">wrapper to access iterator member functions in range-based for </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04220">json.hpp:4220</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_acbc1c415072afe69b5e69b87f496e44b_html_acbc1c415072afe69b5e69b87f496e44b"><div class="ttname"><a href="classnlohmann_1_1basic__json_acbc1c415072afe69b5e69b87f496e44b.html#acbc1c415072afe69b5e69b87f496e44b">nlohmann::basic_json::cbegin</a></div><div class="ttdeci">const_iterator cbegin() const </div><div class="ttdoc">returns a const iterator to the first element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04031">json.hpp:4031</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_afe86d48d3e4e5ebdaaec162b3cf0e95c_html_afe86d48d3e4e5ebdaaec162b3cf0e95c"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_afe86d48d3e4e5ebdaaec162b3cf0e95c.html#afe86d48d3e4e5ebdaaec162b3cf0e95c">nlohmann::basic_json::iterator::operator-=</a></div><div class="ttdeci">iterator &amp; operator-=(difference_type i)</div><div class="ttdoc">subtract from iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06751">json.hpp:6751</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a1846cc6db1f38f5918c8200d9ce31896_html_a1846cc6db1f38f5918c8200d9ce31896"><div class="ttname"><a href="classnlohmann_1_1basic__json_a1846cc6db1f38f5918c8200d9ce31896.html#a1846cc6db1f38f5918c8200d9ce31896">nlohmann::basic_json::crend</a></div><div class="ttdeci">const_reverse_iterator crend() const </div><div class="ttdoc">returns a const reverse iterator to one before the first </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04199">json.hpp:4199</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a9af5ea68c88f423ddf35216aff7f1813_html_a9af5ea68c88f423ddf35216aff7f1813"><div class="ttname"><a href="classnlohmann_1_1basic__json_a9af5ea68c88f423ddf35216aff7f1813.html#a9af5ea68c88f423ddf35216aff7f1813">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const object_t &amp;val)</div><div class="ttdoc">create an object (explicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01038">json.hpp:1038</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a60ca396028b8d9714c6e10efbf475af6_html_a60ca396028b8d9714c6e10efbf475af6"><div class="ttname"><a href="classnlohmann_1_1basic__json_a60ca396028b8d9714c6e10efbf475af6.html#a60ca396028b8d9714c6e10efbf475af6">nlohmann::basic_json::operator&lt;&lt;</a></div><div class="ttdeci">friend std::istream &amp; operator&lt;&lt;(basic_json &amp;j, std::istream &amp;i)</div><div class="ttdoc">deserialize from stream </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05544">json.hpp:5544</a></div></div>
<div class="ttc" id="structstd_1_1hash_3_01nlohmann_1_1json_01_4_afd03f6ad53db22868ca4163a8200b2f9_html_afd03f6ad53db22868ca4163a8200b2f9"><div class="ttname"><a href="structstd_1_1hash_3_01nlohmann_1_1json_01_4_afd03f6ad53db22868ca4163a8200b2f9.html#afd03f6ad53db22868ca4163a8200b2f9">std::hash&lt; nlohmann::json &gt;::operator()</a></div><div class="ttdeci">std::size_t operator()(const nlohmann::json &amp;j) const </div><div class="ttdoc">return a hash value for a JSON object </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l08573">json.hpp:8573</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a5e34c5435e557d0bf666bd7311211405_html_a5e34c5435e557d0bf666bd7311211405"><div class="ttname"><a href="classnlohmann_1_1basic__json_a5e34c5435e557d0bf666bd7311211405.html#a5e34c5435e557d0bf666bd7311211405">nlohmann::basic_json::operator&lt;&lt;</a></div><div class="ttdeci">friend std::ostream &amp; operator&lt;&lt;(std::ostream &amp;o, const basic_json &amp;j)</div><div class="ttdoc">serialize to stream </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l05422">json.hpp:5422</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_a18c35a6735d3da96b4fc026421c05dd8_html_a18c35a6735d3da96b4fc026421c05dd8"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_a18c35a6735d3da96b4fc026421c05dd8.html#a18c35a6735d3da96b4fc026421c05dd8">nlohmann::basic_json::const_iterator::const_iterator</a></div><div class="ttdeci">const_iterator(const const_iterator &amp;other) noexcept</div><div class="ttdoc">copy constructor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06202">json.hpp:6202</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1iterator_ab3679dc63b3a59edb98b1c2b96d8683c_html_ab3679dc63b3a59edb98b1c2b96d8683c"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1iterator_ab3679dc63b3a59edb98b1c2b96d8683c.html#ab3679dc63b3a59edb98b1c2b96d8683c">nlohmann::basic_json::iterator::operator--</a></div><div class="ttdeci">iterator &amp; operator--()</div><div class="ttdoc">pre-decrement (it) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06737">json.hpp:6737</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a8468efcfcd95db15f46887b29924ed5c_html_a8468efcfcd95db15f46887b29924ed5c"><div class="ttname"><a href="classnlohmann_1_1basic__json_a8468efcfcd95db15f46887b29924ed5c.html#a8468efcfcd95db15f46887b29924ed5c">nlohmann::basic_json::insert</a></div><div class="ttdeci">iterator insert(const_iterator pos, basic_json &amp;&amp;val)</div><div class="ttdoc">inserts element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l04692">json.hpp:4692</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a4f332e90f3cae562d0c3fa6ba48f74f9_html_a4f332e90f3cae562d0c3fa6ba48f74f9"><div class="ttname"><a href="classnlohmann_1_1basic__json_a4f332e90f3cae562d0c3fa6ba48f74f9.html#a4f332e90f3cae562d0c3fa6ba48f74f9">nlohmann::basic_json::get_ref</a></div><div class="ttdeci">ReferenceType get_ref()</div><div class="ttdoc">get a reference value (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l02855">json.hpp:2855</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_1_1const__iterator_aefac8f3e390ac917f021761f4a8f8e71_html_aefac8f3e390ac917f021761f4a8f8e71"><div class="ttname"><a href="classnlohmann_1_1basic__json_1_1const__iterator_aefac8f3e390ac917f021761f4a8f8e71.html#aefac8f3e390ac917f021761f4a8f8e71">nlohmann::basic_json::const_iterator::operator-=</a></div><div class="ttdeci">const_iterator &amp; operator-=(difference_type i)</div><div class="ttdoc">subtract from iterator </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06548">json.hpp:6548</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ae85d91b0620650bcd9993e09d0e287d9_html_ae85d91b0620650bcd9993e09d0e287d9"><div class="ttname"><a href="classnlohmann_1_1basic__json_ae85d91b0620650bcd9993e09d0e287d9.html#ae85d91b0620650bcd9993e09d0e287d9">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const CompatibleStringType &amp;val)</div><div class="ttdoc">create a string (implicit) </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01218">json.hpp:1218</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_a4ab93491f82545342562c7ee7e3166c7_html_a4ab93491f82545342562c7ee7e3166c7"><div class="ttname"><a href="classnlohmann_1_1basic__json_a4ab93491f82545342562c7ee7e3166c7.html#a4ab93491f82545342562c7ee7e3166c7">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(const basic_json &amp;other)</div><div class="ttdoc">copy constructor </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01857">json.hpp:1857</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_ac7c006e2345a76859c4802db7d130e0e_html_ac7c006e2345a76859c4802db7d130e0e"><div class="ttname"><a href="classnlohmann_1_1basic__json_ac7c006e2345a76859c4802db7d130e0e.html#ac7c006e2345a76859c4802db7d130e0e">nlohmann::basic_json::operator[]</a></div><div class="ttdeci">reference operator[](T *key)</div><div class="ttdoc">access specified object element </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l03382">json.hpp:3382</a></div></div>
<div class="ttc" id="classnlohmann_1_1basic__json_aea1c863b719b4ca5b77188c171bbfafe_html_aea1c863b719b4ca5b77188c171bbfafe"><div class="ttname"><a href="classnlohmann_1_1basic__json_aea1c863b719b4ca5b77188c171bbfafe.html#aea1c863b719b4ca5b77188c171bbfafe">nlohmann::basic_json::parse_event_t</a></div><div class="ttdeci">parse_event_t</div><div class="ttdoc">JSON callback events. </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l00857">json.hpp:857</a></div></div>
2015-12-16 14:12:56 +03:00
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
2016-01-30 22:25:28 +03:00
Generated on Sat Jan 30 2016 20:23:25 for JSON for Modern C++ by &#160;<a href="http://www.doxygen.org/index.html">
2015-12-16 14:12:56 +03:00
<img class="footer" src="doxygen.png" alt="doxygen"/>
2016-01-13 21:16:43 +03:00
</a> 1.8.11
2015-12-16 14:12:56 +03:00
</small></address>
</body>
</html>