Module std::collections::hash_set
[−]
[src]
Reexports
use core::prelude::v1::*; |
use borrow::Borrow; |
use clone::Clone; |
use cmp::{Eq, PartialEq}; |
use core::marker::Sized; |
use default::Default; |
use fmt; |
use hash::Hash; |
use iter::{Iterator, IntoIterator, ExactSizeIterator, FromIterator, Map, Chain, Extend}; |
use ops::{BitOr, BitAnd, BitXor, Sub}; |
use option::Option::{self, Some, None}; |
use super::hash_map::{self, HashMap, Keys, RandomState, Recover}; |
use super::hash_state::HashState; |
Structs
Difference |
Difference iterator |
Drain |
HashSet drain iterator |
HashSet |
An implementation of a hash set using the underlying representation of a HashMap where the value is (). |
Intersection |
Intersection iterator |
IntoIter |
HashSet move iterator |
Iter |
HashSet iterator |
SymmetricDifference |
Symmetric difference iterator. |
Union |
Set union iterator. |
Constants
INITIAL_CAPACITY |