<trclass="memdesc:"><tdclass="mdescLeft"> </td><tdclass="mdescRight">A single entry in the map. <ahref="structcrashpad_1_1TSimpleStringDictionary_1_1Entry.html#details">More...</a><br/></td></tr>
<trclass="memdesc:"><tdclass="mdescLeft"> </td><tdclass="mdescRight">An iterator to traverse all of the active entries in a <aclass="el"href="classcrashpad_1_1TSimpleStringDictionary.html"title="A map/dictionary collection implementation using a fixed amount of storage, so that it does not perfo...">TSimpleStringDictionary</a>. <ahref="classcrashpad_1_1TSimpleStringDictionary_1_1Iterator.html#details">More...</a><br/></td></tr>
<trclass="memdesc:a0a13b2f67b82411fc1d07f9fb6677b4b"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Constructs a map from its serialized form. <em>map</em> should be the out parameter from <aclass="el"href="classcrashpad_1_1TSimpleStringDictionary.html#a897b860dcc0820c362ef54669ea88599"title="Returns a serialized form of the map. ">Serialize()</a>, and <em>size</em> should be its return value. <br/></td></tr>
<trclass="memdesc:abea7cde3c95c514e0d74622182ab8eff"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Returns the number of active key/value pairs. The upper limit for this is <em>NumEntries</em>. <br/></td></tr>
<trclass="memdesc:af629aa5f484ece193a03425c3e302576"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Stores <em>value</em> into <em>key</em>, replacing the existing value if <em>key</em> is already present. <ahref="#af629aa5f484ece193a03425c3e302576">More...</a><br/></td></tr>
<trclass="memdesc:ad50991fd8714c8bef7820482c7729efb"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Removes <em>key</em> from the map. <ahref="#ad50991fd8714c8bef7820482c7729efb">More...</a><br/></td></tr>
<trclass="memdesc:a897b860dcc0820c362ef54669ea88599"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Returns a serialized form of the map. <ahref="#a897b860dcc0820c362ef54669ea88599">More...</a><br/></td></tr>
<trclass="memdesc:acafb62dfc7bd68d9744124779b84a926"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Constant and publicly accessible versions of the template parameters. <br/></td></tr>
<trclass="memdesc:a1176a981ba33d55f9b0a5f22e7fe4171"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Constant and publicly accessible versions of the template parameters. <br/></td></tr>
<trclass="memdesc:a7b3e25235f37f2ea7d0d05e37da6df13"><tdclass="mdescLeft"> </td><tdclass="mdescRight">Constant and publicly accessible versions of the template parameters. <br/></td></tr>
class crashpad::TSimpleStringDictionary< KeySize, ValueSize, NumEntries ></h3>
<p>A map/dictionary collection implementation using a fixed amount of storage, so that it does not perform any dynamic allocations for its operations. </p>
<p>The actual map storage (<aclass="el"href="structcrashpad_1_1TSimpleStringDictionary_1_1Entry.html"title="A single entry in the map. ">TSimpleStringDictionary::Entry</a>) is guaranteed to be POD, so that it can be transmitted over various IPC mechanisms.</p>
<p>The template parameters control the amount of storage used for the key, value, and map. The <em>KeySize</em> and <em>ValueSize</em> are measured in bytes, not glyphs, and include space for a trailing <code>NUL</code> byte. This gives space for <code>KeySize - 1</code> and <code>ValueSize - 1</code> characters in an entry. <em>NumEntries</em> is the total number of entries that will fit in the map. </p>
</div><h2class="groupheader">Member Function Documentation</h2>
<p>Given <em>key</em>, returns its corresponding value. </p>
<dlclass="params"><dt>Parameters</dt><dd>
<tableclass="params">
<tr><tdclass="paramdir">[in]</td><tdclass="paramname">key</td><td>The key to look up. This must not be <code>nullptr</code>.</td></tr>
</table>
</dd>
</dl>
<dlclass="section return"><dt>Returns</dt><dd>The corresponding value for <em>key</em>, or if <em>key</em> is not found, <code>nullptr</code>. </dd></dl>
<p>Places a serialized version of the map into <em>map</em> and returns the size in bytes. Both <em>map</em> and the size should be passed to the deserializing constructor. Note that the serialized <em>map</em> is scoped to the lifetime of the non-serialized instance of this class. The <em>map</em> data can be copied across IPC boundaries. </p>
<p>Stores <em>value</em> into <em>key</em>, replacing the existing value if <em>key</em> is already present. </p>
<p>If <em>key</em> is not yet in the map and the map is already full (containing <em>NumEntries</em> active entries), this operation silently fails.</p>
<dlclass="params"><dt>Parameters</dt><dd>
<tableclass="params">
<tr><tdclass="paramdir">[in]</td><tdclass="paramname">key</td><td>The key to store. This must not be <code>nullptr</code>. </td></tr>
<tr><tdclass="paramdir">[in]</td><tdclass="paramname">value</td><td>The value to store. If <code>nullptr</code>, <em>key</em> is removed from the map. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>client/simple_string_dictionary.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hrclass="footer"/><addressclass="footer"><small>
Generated by  <ahref="http://www.doxygen.org/index.html">