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

183 lines
No EOL
9.9 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 `HashSet` struct in crate `bitflags`.">
<meta name="keywords" content="rust, rustlang, rust-lang, HashSet">
<title>bitflags::__core::collections::HashSet - 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: 'HashSet', 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=''>HashSet</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-2393' class='srclink' href='https://doc.rust-lang.org/nightly/std/collections/hash/set/struct.HashSet.html?gotosrc=2393' title='goto source code'>[src]</a></span></h1>
<pre class='rust struct'>pub struct HashSet&lt;T, 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>An implementation of a hash set using the underlying representation of a
HashMap where the value is ().</p>
<p>As with the <code>HashMap</code> type, a <code>HashSet</code> requires that the elements
implement the <code>Eq</code> and <code>Hash</code> traits. 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 an item to be modified in such a way that the
item&#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 set. This is
normally only possible through <code>Cell</code>, <code>RefCell</code>, global state, I/O, or
unsafe code.</p>
<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'>HashSet</span>;
<span class='comment'>// Type inference lets us omit an explicit type signature (which</span>
<span class='comment'>// would be `HashSet&lt;&amp;str&gt;` in this example).</span>
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>books</span> <span class='op'>=</span> <span class='ident'>HashSet</span>::<span class='ident'>new</span>();
<span class='comment'>// Add some books.</span>
<span class='ident'>books</span>.<span class='ident'>insert</span>(<span class='string'>&quot;A Dance With Dragons&quot;</span>);
<span class='ident'>books</span>.<span class='ident'>insert</span>(<span class='string'>&quot;To Kill a Mockingbird&quot;</span>);
<span class='ident'>books</span>.<span class='ident'>insert</span>(<span class='string'>&quot;The Odyssey&quot;</span>);
<span class='ident'>books</span>.<span class='ident'>insert</span>(<span class='string'>&quot;The Great Gatsby&quot;</span>);
<span class='comment'>// Check for a specific one.</span>
<span class='kw'>if</span> <span class='op'>!</span><span class='ident'>books</span>.<span class='ident'>contains</span>(<span class='string'>&quot;The Winds of Winter&quot;</span>) {
<span class='macro'>println</span><span class='macro'>!</span>(<span class='string'>&quot;We have {} books, but The Winds of Winter ain&#39;t one.&quot;</span>,
<span class='ident'>books</span>.<span class='ident'>len</span>());
}
<span class='comment'>// Remove a book.</span>
<span class='ident'>books</span>.<span class='ident'>remove</span>(<span class='string'>&quot;The Odyssey&quot;</span>);
<span class='comment'>// Iterate over everything.</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'>books</span> {
<span class='macro'>println</span><span class='macro'>!</span>(<span class='string'>&quot;{}&quot;</span>, <span class='ident'>book</span>);
}</pre>
<p>The easiest way to use <code>HashSet</code> with a custom type is to derive
<code>Eq</code> and <code>Hash</code>. We must also derive <code>PartialEq</code>, this will in the
future be implied by <code>Eq</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'>HashSet</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='op'>&lt;</span><span class='lifetime'>&#39;a</span><span class='op'>&gt;</span> {
<span class='ident'>name</span>: <span class='kw-2'>&amp;</span><span class='lifetime'>&#39;a</span> <span class='ident'>str</span>,
<span class='ident'>power</span>: <span class='ident'>usize</span>,
}
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>vikings</span> <span class='op'>=</span> <span class='ident'>HashSet</span>::<span class='ident'>new</span>();
<span class='ident'>vikings</span>.<span class='ident'>insert</span>(<span class='ident'>Viking</span> { <span class='ident'>name</span>: <span class='string'>&quot;Einar&quot;</span>, <span class='ident'>power</span>: <span class='number'>9</span> });
<span class='ident'>vikings</span>.<span class='ident'>insert</span>(<span class='ident'>Viking</span> { <span class='ident'>name</span>: <span class='string'>&quot;Einar&quot;</span>, <span class='ident'>power</span>: <span class='number'>9</span> });
<span class='ident'>vikings</span>.<span class='ident'>insert</span>(<span class='ident'>Viking</span> { <span class='ident'>name</span>: <span class='string'>&quot;Olaf&quot;</span>, <span class='ident'>power</span>: <span class='number'>4</span> });
<span class='ident'>vikings</span>.<span class='ident'>insert</span>(<span class='ident'>Viking</span> { <span class='ident'>name</span>: <span class='string'>&quot;Harald&quot;</span>, <span class='ident'>power</span>: <span class='number'>8</span> });
<span class='comment'>// Use derived implementation to print the vikings.</span>
<span class='kw'>for</span> <span class='ident'>x</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;{:?}&quot;</span>, <span class='ident'>x</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>