oxipng/doc/bitflags/__core/collections/struct.HashMap.html
2016-04-20 15:59:23 -04:00

243 lines
No EOL
15 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `HashMap` struct in crate `bitflags`.">
<meta name="keywords" content="rust, rustlang, rust-lang, HashMap">
<title>bitflags::__core::collections::HashMap - Rust</title>
<link rel="stylesheet" type="text/css" href="../../../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../../../main.css">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<p class='location'><a href='../../index.html'>bitflags</a>::<wbr><a href='../index.html'>__core</a>::<wbr><a href='index.html'>collections</a></p><script>window.sidebarCurrent = {name: 'HashMap', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press S to search, ? for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content struct">
<h1 class='fqn'><span class='in-band'>Struct <a href='../../index.html'>bitflags</a>::<wbr><a href='../index.html'>__core</a>::<wbr><a href='index.html'>collections</a>::<wbr><a class='struct' href=''>HashMap</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>&#x2212;</span>]
</a>
</span><a id='src-1704' class='srclink' href='https://doc.rust-lang.org/nightly/std/collections/hash/map/struct.HashMap.html?gotosrc=1704' title='goto source code'>[src]</a></span></h1>
<pre class='rust struct'>pub struct HashMap&lt;K, V, S = <a class='struct' href='../../../bitflags/__core/collections/hash_map/struct.RandomState.html' title='bitflags::__core::collections::hash_map::RandomState'>RandomState</a>&gt; {
// some fields omitted
}</pre><span class="since">1.0.0</span><div class='docblock'><p>A hash map implementation which uses linear probing with Robin
Hood bucket stealing.</p>
<p>The hashes are all keyed by the thread-local random number generator
on creation by default. This means that the ordering of the keys is
randomized, but makes the tables more resistant to
denial-of-service attacks (Hash DoS). This behavior can be
overridden with one of the constructors.</p>
<p>It is required that the keys implement the <code>Eq</code> and <code>Hash</code> traits, although
this can frequently be achieved by using <code>#[derive(PartialEq, Eq, Hash)]</code>.
If you implement these yourself, it is important that the following
property holds:</p>
<pre><code class="language-text">k1 == k2 -&gt; hash(k1) == hash(k2)
</code></pre>
<p>In other words, if two keys are equal, their hashes must be equal.</p>
<p>It is a logic error for a key to be modified in such a way that the key&#39;s
hash, as determined by the <code>Hash</code> trait, or its equality, as determined by
the <code>Eq</code> trait, changes while it is in the map. This is normally only
possible through <code>Cell</code>, <code>RefCell</code>, global state, I/O, or unsafe code.</p>
<p>Relevant papers/articles:</p>
<ol>
<li>Pedro Celis. <a href="https://cs.uwaterloo.ca/research/tr/1986/CS-86-14.pdf">&quot;Robin Hood Hashing&quot;</a></li>
<li>Emmanuel Goossaert. <a href="http://codecapsule.com/2013/11/11/robin-hood-hashing/">&quot;Robin Hood
hashing&quot;</a></li>
<li>Emmanuel Goossaert. <a href="http://codecapsule.com/2013/11/17/robin-hood-hashing-backward-shift-deletion/">&quot;Robin Hood hashing: backward shift
deletion&quot;</a></li>
</ol>
<h1 id='examples' class='section-header'><a href='#examples'>Examples</a></h1>
<pre class='rust rust-example-rendered'>
<span class='kw'>use</span> <span class='ident'>std</span>::<span class='ident'>collections</span>::<span class='ident'>HashMap</span>;
<span class='comment'>// type inference lets us omit an explicit type signature (which</span>
<span class='comment'>// would be `HashMap&lt;&amp;str, &amp;str&gt;` in this example).</span>
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>book_reviews</span> <span class='op'>=</span> <span class='ident'>HashMap</span>::<span class='ident'>new</span>();
<span class='comment'>// review some books.</span>
<span class='ident'>book_reviews</span>.<span class='ident'>insert</span>(<span class='string'>&quot;Adventures of Huckleberry Finn&quot;</span>, <span class='string'>&quot;My favorite book.&quot;</span>);
<span class='ident'>book_reviews</span>.<span class='ident'>insert</span>(<span class='string'>&quot;Grimms&#39; Fairy Tales&quot;</span>, <span class='string'>&quot;Masterpiece.&quot;</span>);
<span class='ident'>book_reviews</span>.<span class='ident'>insert</span>(<span class='string'>&quot;Pride and Prejudice&quot;</span>, <span class='string'>&quot;Very enjoyable.&quot;</span>);
<span class='ident'>book_reviews</span>.<span class='ident'>insert</span>(<span class='string'>&quot;The Adventures of Sherlock Holmes&quot;</span>, <span class='string'>&quot;Eye lyked it alot.&quot;</span>);
<span class='comment'>// check for a specific one.</span>
<span class='kw'>if</span> <span class='op'>!</span><span class='ident'>book_reviews</span>.<span class='ident'>contains_key</span>(<span class='string'>&quot;Les Misérables&quot;</span>) {
<span class='macro'>println</span><span class='macro'>!</span>(<span class='string'>&quot;We&#39;ve got {} reviews, but Les Misérables ain&#39;t one.&quot;</span>,
<span class='ident'>book_reviews</span>.<span class='ident'>len</span>());
}
<span class='comment'>// oops, this review has a lot of spelling mistakes, let&#39;s delete it.</span>
<span class='ident'>book_reviews</span>.<span class='ident'>remove</span>(<span class='string'>&quot;The Adventures of Sherlock Holmes&quot;</span>);
<span class='comment'>// look up the values associated with some keys.</span>
<span class='kw'>let</span> <span class='ident'>to_find</span> <span class='op'>=</span> [<span class='string'>&quot;Pride and Prejudice&quot;</span>, <span class='string'>&quot;Alice&#39;s Adventure in Wonderland&quot;</span>];
<span class='kw'>for</span> <span class='ident'>book</span> <span class='kw'>in</span> <span class='kw-2'>&amp;</span><span class='ident'>to_find</span> {
<span class='kw'>match</span> <span class='ident'>book_reviews</span>.<span class='ident'>get</span>(<span class='ident'>book</span>) {
<span class='prelude-val'>Some</span>(<span class='ident'>review</span>) <span class='op'>=&gt;</span> <span class='macro'>println</span><span class='macro'>!</span>(<span class='string'>&quot;{}: {}&quot;</span>, <span class='ident'>book</span>, <span class='ident'>review</span>),
<span class='prelude-val'>None</span> <span class='op'>=&gt;</span> <span class='macro'>println</span><span class='macro'>!</span>(<span class='string'>&quot;{} is unreviewed.&quot;</span>, <span class='ident'>book</span>)
}
}
<span class='comment'>// iterate over everything.</span>
<span class='kw'>for</span> (<span class='ident'>book</span>, <span class='ident'>review</span>) <span class='kw'>in</span> <span class='kw-2'>&amp;</span><span class='ident'>book_reviews</span> {
<span class='macro'>println</span><span class='macro'>!</span>(<span class='string'>&quot;{}: \&quot;{}\&quot;&quot;</span>, <span class='ident'>book</span>, <span class='ident'>review</span>);
}</pre>
<p><code>HashMap</code> also implements an <a href="#method.entry"><code>Entry API</code></a>, which allows
for more complex methods of getting, setting, updating and removing keys and
their values:</p>
<pre class='rust rust-example-rendered'>
<span class='kw'>use</span> <span class='ident'>std</span>::<span class='ident'>collections</span>::<span class='ident'>HashMap</span>;
<span class='comment'>// type inference lets us omit an explicit type signature (which</span>
<span class='comment'>// would be `HashMap&lt;&amp;str, u8&gt;` in this example).</span>
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>player_stats</span> <span class='op'>=</span> <span class='ident'>HashMap</span>::<span class='ident'>new</span>();
<span class='kw'>fn</span> <span class='ident'>random_stat_buff</span>() <span class='op'>-&gt;</span> <span class='ident'>u8</span> {
<span class='comment'>// could actually return some random value here - let&#39;s just return</span>
<span class='comment'>// some fixed value for now</span>
<span class='number'>42</span>
}
<span class='comment'>// insert a key only if it doesn&#39;t already exist</span>
<span class='ident'>player_stats</span>.<span class='ident'>entry</span>(<span class='string'>&quot;health&quot;</span>).<span class='ident'>or_insert</span>(<span class='number'>100</span>);
<span class='comment'>// insert a key using a function that provides a new value only if it</span>
<span class='comment'>// doesn&#39;t already exist</span>
<span class='ident'>player_stats</span>.<span class='ident'>entry</span>(<span class='string'>&quot;defence&quot;</span>).<span class='ident'>or_insert_with</span>(<span class='ident'>random_stat_buff</span>);
<span class='comment'>// update a key, guarding against the key possibly not being set</span>
<span class='kw'>let</span> <span class='ident'>stat</span> <span class='op'>=</span> <span class='ident'>player_stats</span>.<span class='ident'>entry</span>(<span class='string'>&quot;attack&quot;</span>).<span class='ident'>or_insert</span>(<span class='number'>100</span>);
<span class='op'>*</span><span class='ident'>stat</span> <span class='op'>+=</span> <span class='ident'>random_stat_buff</span>();</pre>
<p>The easiest way to use <code>HashMap</code> with a custom type as key is to derive <code>Eq</code> and <code>Hash</code>.
We must also derive <code>PartialEq</code>.</p>
<pre class='rust rust-example-rendered'>
<span class='kw'>use</span> <span class='ident'>std</span>::<span class='ident'>collections</span>::<span class='ident'>HashMap</span>;
<span class='attribute'>#[<span class='ident'>derive</span>(<span class='ident'>Hash</span>, <span class='ident'>Eq</span>, <span class='ident'>PartialEq</span>, <span class='ident'>Debug</span>)]</span>
<span class='kw'>struct</span> <span class='ident'>Viking</span> {
<span class='ident'>name</span>: <span class='ident'>String</span>,
<span class='ident'>country</span>: <span class='ident'>String</span>,
}
<span class='kw'>impl</span> <span class='ident'>Viking</span> {
<span class='doccomment'>/// Create a new Viking.</span>
<span class='kw'>fn</span> <span class='ident'>new</span>(<span class='ident'>name</span>: <span class='kw-2'>&amp;</span><span class='ident'>str</span>, <span class='ident'>country</span>: <span class='kw-2'>&amp;</span><span class='ident'>str</span>) <span class='op'>-&gt;</span> <span class='ident'>Viking</span> {
<span class='ident'>Viking</span> { <span class='ident'>name</span>: <span class='ident'>name</span>.<span class='ident'>to_string</span>(), <span class='ident'>country</span>: <span class='ident'>country</span>.<span class='ident'>to_string</span>() }
}
}
<span class='comment'>// Use a HashMap to store the vikings&#39; health points.</span>
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>vikings</span> <span class='op'>=</span> <span class='ident'>HashMap</span>::<span class='ident'>new</span>();
<span class='ident'>vikings</span>.<span class='ident'>insert</span>(<span class='ident'>Viking</span>::<span class='ident'>new</span>(<span class='string'>&quot;Einar&quot;</span>, <span class='string'>&quot;Norway&quot;</span>), <span class='number'>25</span>);
<span class='ident'>vikings</span>.<span class='ident'>insert</span>(<span class='ident'>Viking</span>::<span class='ident'>new</span>(<span class='string'>&quot;Olaf&quot;</span>, <span class='string'>&quot;Denmark&quot;</span>), <span class='number'>24</span>);
<span class='ident'>vikings</span>.<span class='ident'>insert</span>(<span class='ident'>Viking</span>::<span class='ident'>new</span>(<span class='string'>&quot;Harald&quot;</span>, <span class='string'>&quot;Iceland&quot;</span>), <span class='number'>12</span>);
<span class='comment'>// Use derived implementation to print the status of the vikings.</span>
<span class='kw'>for</span> (<span class='ident'>viking</span>, <span class='ident'>health</span>) <span class='kw'>in</span> <span class='kw-2'>&amp;</span><span class='ident'>vikings</span> {
<span class='macro'>println</span><span class='macro'>!</span>(<span class='string'>&quot;{:?} has {} hp&quot;</span>, <span class='ident'>viking</span>, <span class='ident'>health</span>);
}</pre>
</div></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>&larrb;</dt>
<dd>Move up in search results</dd>
<dt>&rarrb;</dt>
<dd>Move down in search results</dd>
<dt>&#9166;</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code> or <code>* -> vec</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../../../";
window.currentCrate = "bitflags";
window.playgroundUrl = "";
</script>
<script src="../../../jquery.js"></script>
<script src="../../../main.js"></script>
<script defer src="../../../search-index.js"></script>
</body>
</html>