json/json_8hpp_source.html

307 lines
856 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-02-07 16:57:42 +03:00
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="comment">/*</span></div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="comment"> __ _____ _____ _____</span></div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="comment"> __| | __| | | | JSON for Modern C++</span></div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="comment">| | |__ | | | | | | version 2.0.0</span></div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="comment">|_____|_____|_____|_|___| https://github.com/nlohmann/json</span></div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;<span class="comment"></span></div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;<span class="comment">Copyright (c) 2013-2016 Niels Lohmann &lt;http://nlohmann.me&gt;.</span></div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="comment">Licensed under the MIT License &lt;http://opensource.org/licenses/MIT&gt;.</span></div><div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;<span class="comment">*/</span></div><div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;</div><div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;<span class="preprocessor">#ifndef NLOHMANN_JSON_HPP</span></div><div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;<span class="preprocessor">#define NLOHMANN_JSON_HPP</span></div><div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160;</div><div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;<span class="preprocessor">#include &lt;algorithm&gt;</span></div><div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="preprocessor">#include &lt;array&gt;</span></div><div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;<span class="preprocessor">#include &lt;cassert&gt;</span></div><div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;<span class="preprocessor">#include &lt;ciso646&gt;</span></div><div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="preprocessor">#include &lt;cmath&gt;</span></div><div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="preprocessor">#include &lt;cstddef&gt;</span></div><div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;<span class="preprocessor">#include &lt;cstdio&gt;</span></div><div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;<span class="preprocessor">#include &lt;cstdlib&gt;</span></div><div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;<span class="preprocessor">#include &lt;functional&gt;</span></div><div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;<span class="preprocessor">#include &lt;initializer_list&gt;</span></div><div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;<span class="preprocessor">#include &lt;iomanip&gt;</span></div><div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;<span class="preprocessor">#include &lt;iostream&gt;</span></div><div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;<span class="preprocessor">#include &lt;iterator&gt;</span></div><div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160;<span class="preprocessor">#include &lt;limits&gt;</span></div><div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160;<span class="preprocessor">#include &lt;map&gt;</span></div><div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160;<span class="preprocessor">#include &lt;memory&gt;</span></div><div class="l
<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#l06814">json.hpp:6814</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#l04194">json.hpp:4194</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#l05452">json.hpp:5452</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00945">json.hpp:945</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01076">json.hpp:1076</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04012">json.hpp:4012</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02099">json.hpp:2099</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#l02241">json.hpp:2241</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l03204">json.hpp:3204</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#l06898">json.hpp:6898</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#l06960">json.hpp:6960</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02188">json.hpp:2188</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04562">json.hpp:4562</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#l06548">json.hpp:6548</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#l06954">json.hpp:6954</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#l03336">json.hpp:3336</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#l05665">json.hpp:5665</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02215">json.hpp:2215</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06856">json.hpp:6856</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01656">json.hpp:1656</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06674">json.hpp:6674</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00447">json.hpp:447</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04748">json.hpp:4748</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02329">json.hpp:2329</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#l01169">json.hpp:1169</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#l01218">json.hpp:1218</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06996">json.hpp:6996</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#l03964">json.hpp:3964</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01345">json.hpp:1345</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l05290">json.hpp:5290</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01145">json.hpp:1145</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04674">json.hpp:4674</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#l03918">json.hpp:3918</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#l08622">json.hpp:8622</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00374">json.hpp:374</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02150">json.hpp:2150</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l03575">json.hpp:3575</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#l05046">json.hpp:5046</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#l06982">json.hpp:6982</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#l06632">json.hpp:6632</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00168">json.hpp:168</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01405">json.hpp:1405</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06820">json.hpp:6820</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#l07009">json.hpp:7009</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#l05269">json.hpp:5269</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#l04268">json.hpp:4268</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00518">json.hpp:518</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04832">json.hpp:4832</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l03111">json.hpp:3111</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06666">json.hpp:6666</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#l04202">json.hpp:4202</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#l06781">json.hpp:6781</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#l05627">json.hpp:5627</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#l06474">json.hpp:6474</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02348">json.hpp:2348</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00328">json.hpp:328</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-31 00:07:50 +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#l00590">json.hpp:590</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#l00209">json.hpp:209</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01616">json.hpp:1616</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04326">json.hpp:4326</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01971">json.hpp:1971</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06246">json.hpp:6246</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02825">json.hpp:2825</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l03617">json.hpp:3617</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00196">json.hpp:196</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06250">json.hpp:6250</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02266">json.hpp:2266</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04724">json.hpp:4724</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#l04124">json.hpp:4124</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#l05590">json.hpp:5590</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#l03371">json.hpp:3371</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#l04885">json.hpp:4885</a></div></div>
2016-01-31 15:08:54 +03:00
<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#l00991">json.hpp:991</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01726">json.hpp:1726</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06892">json.hpp:6892</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00229">json.hpp:229</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l03293">json.hpp:3293</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#l03453">json.hpp:3453</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#l06974">json.hpp:6974</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#l04374">json.hpp:4374</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00201">json.hpp:201</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l07002">json.hpp:7002</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01116">json.hpp:1116</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#l03015">json.hpp:3015</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#l01680">json.hpp:1680</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06926">json.hpp:6926</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#l04943">json.hpp:4943</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#l06287">json.hpp:6287</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00207">json.hpp:207</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04776">json.hpp:4776</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#l05496">json.hpp:5496</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#l05351">json.hpp:5351</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#l06834">json.hpp:6834</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#l06584">json.hpp:6584</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#l06826">json.hpp:6826</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01939">json.hpp:1939</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06511">json.hpp:6511</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02372">json.hpp:2372</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#l03063">json.hpp:3063</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06802">json.hpp:6802</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-02-07 16:57:42 +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#l04503">json.hpp:4503</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01999">json.hpp:1999</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06841">json.hpp:6841</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#l06878">json.hpp:6878</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#l06519">json.hpp:6519</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#l04164">json.hpp:4164</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02068">json.hpp:2068</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00191">json.hpp:191</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#l00896">json.hpp:896</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#l00204">json.hpp:204</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#l00421">json.hpp:421</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04698">json.hpp:4698</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#l04053">json.hpp:4053</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#l06682">json.hpp:6682</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00194">json.hpp:194</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04063">json.hpp:4063</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#l05551">json.hpp:5551</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="ttdoc">return difference </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l06886">json.hpp:6886</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01280">json.hpp:1280</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06797">json.hpp:6797</a></div></div>
2016-01-31 00:07:50 +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#l00061">json.hpp:61</a></div></div>
2016-02-07 16:57:42 +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#l06248">json.hpp:6248</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#l05080">json.hpp:5080</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#l06936">json.hpp:6936</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01251">json.hpp:1251</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04231">json.hpp:4231</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01317">json.hpp:1317</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l03583">json.hpp:3583</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#l06620">json.hpp:6620</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02310">json.hpp:2310</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06439">json.hpp:6439</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00658">json.hpp:658</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04981">json.hpp:4981</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00677">json.hpp:677</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04239">json.hpp:4239</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00199">json.hpp:199</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02126">json.hpp:2126</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#l02741">json.hpp:2741</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l05012">json.hpp:5012</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#l03793">json.hpp:3793</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#l03520">json.hpp:3520</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#l06928">json.hpp:6928</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#l03627">json.hpp:3627</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#l04638">json.hpp:4638</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-02-07 16:57:42 +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#l06947">json.hpp:6947</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#l05619">json.hpp:5619</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#l05161">json.hpp:5161</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#l03546">json.hpp:3546</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02891">json.hpp:2891</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#l01376">json.hpp:1376</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06260">json.hpp:6260</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#l06399">json.hpp:6399</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-02-07 16:57:42 +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#l05114">json.hpp:5114</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02840">json.hpp:2840</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l05313">json.hpp:5313</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#l06870">json.hpp:6870</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01451">json.hpp:1451</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06614">json.hpp:6614</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#l03685">json.hpp:3685</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01524">json.hpp:1524</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06792">json.hpp:6792</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#l05322">json.hpp:5322</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#l06931">json.hpp:6931</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#l06482">json.hpp:6482</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02291">json.hpp:2291</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06757">json.hpp:6757</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#l06254">json.hpp:6254</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#l06990">json.hpp:6990</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#l03981">json.hpp:3981</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01049">json.hpp:1049</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l05474">json.hpp:5474</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#l06626">json.hpp:6626</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#l06319">json.hpp:6319</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#l03880">json.hpp:3880</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#l03245">json.hpp:3245</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#l06742">json.hpp:6742</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#l04134">json.hpp:4134</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#l04664">json.hpp:4664</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#l06706">json.hpp:6706</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#l06239">json.hpp:6239</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00212">json.hpp:212</a></div></div>
2016-02-06 00:33:55 +03:00
<div class="ttc" id="classnlohmann_1_1basic__json_a9857835334d38ba04959e348ca6be208_html_a9857835334d38ba04959e348ca6be208"><div class="ttname"><a href="classnlohmann_1_1basic__json_a9857835334d38ba04959e348ca6be208.html#a9857835334d38ba04959e348ca6be208">nlohmann::basic_json::basic_json</a></div><div class="ttdeci">basic_json(std::istream &amp;i, parser_callback_t cb=nullptr)</div><div class="ttdoc">construct a JSON value given an input stream </div><div class="ttdef"><b>Definition:</b> <a href="json_8hpp_source.html#l01833">json.hpp:1833</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06252">json.hpp:6252</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#l06941">json.hpp:6941</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#l05260">json.hpp:5260</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l03158">json.hpp:3158</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06578">json.hpp:6578</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#l06967">json.hpp:6967</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02971">json.hpp:2971</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l04437">json.hpp:4437</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#l04318">json.hpp:4318</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#l04093">json.hpp:4093</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#l06863">json.hpp:6863</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#l04297">json.hpp:4297</a></div></div>
2016-01-31 15:08:54 +03:00
<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#l01014">json.hpp:1014</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l05655">json.hpp:5655</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#l08657">json.hpp:8657</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#l05533">json.hpp:5533</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#l06314">json.hpp:6314</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#l06849">json.hpp:6849</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#l04803">json.hpp:4803</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l02876">json.hpp:2876</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l06660">json.hpp:6660</a></div></div>
2016-02-06 00:33:55 +03:00
<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#l01200">json.hpp:1200</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#l01864">json.hpp:1864</a></div></div>
2016-02-07 16:57:42 +03:00
<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#l03404">json.hpp:3404</a></div></div>
2016-01-31 00:07:50 +03:00
<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#l00831">json.hpp:831</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-02-07 16:57:42 +03:00
Generated on Sun Feb 7 2016 14:55:38 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>