[−][src]Struct indexmap::set::IndexSet
A hash set where the iteration order of the values is independent of their hash values.
The interface is closely compatible with the standard HashSet
, but also
has additional features.
Order
The values have a consistent order that is determined by the sequence of insertion and removal calls on the set. The order does not depend on the values or the hash function at all. Note that insertion order and value are not affected if a re-insertion is attempted once an element is already present.
All iterators traverse the set in order. Set operation iterators like
union
produce a concatenated order, as do their matching "bitwise"
operators. See their documentation for specifics.
The insertion order is preserved, with notable exceptions like the
.remove()
or .swap_remove()
methods. Methods such as .sort_by()
of
course result in a new order, depending on the sorting order.
Indices
The values are indexed in a compact range without holes in the range
0..self.len()
. For example, the method .get_full
looks up the index for
a value, and the method .get_index
looks up the value by index.
Examples
use indexmap::IndexSet; // Collects which letters appear in a sentence. let letters: IndexSet<_> = "a short treatise on fungi".chars().collect(); assert!(letters.contains(&'s')); assert!(letters.contains(&'t')); assert!(letters.contains(&'u')); assert!(!letters.contains(&'y'));
Methods
impl<T> IndexSet<T>
[src]
impl<T> IndexSet<T>
pub fn new() -> Self
[src]
pub fn new() -> Self
Create a new set. (Does not allocate.)
pub fn with_capacity(n: usize) -> Self
[src]
pub fn with_capacity(n: usize) -> Self
Create a new set with capacity for n
elements.
(Does not allocate if n
is zero.)
Computes in O(n) time.
impl<T, S> IndexSet<T, S>
[src]
impl<T, S> IndexSet<T, S>
pub fn with_capacity_and_hasher(n: usize, hash_builder: S) -> Self where
S: BuildHasher,
[src]
pub fn with_capacity_and_hasher(n: usize, hash_builder: S) -> Self where
S: BuildHasher,
Create a new set with capacity for n
elements.
(Does not allocate if n
is zero.)
Computes in O(n) time.
pub fn len(&self) -> usize
[src]
pub fn len(&self) -> usize
Return the number of elements in the set.
Computes in O(1) time.
pub fn is_empty(&self) -> bool
[src]
pub fn is_empty(&self) -> bool
Returns true if the set contains no elements.
Computes in O(1) time.
pub fn with_hasher(hash_builder: S) -> Self where
S: BuildHasher,
[src]
pub fn with_hasher(hash_builder: S) -> Self where
S: BuildHasher,
Create a new set with hash_builder
pub fn hasher(&self) -> &S where
S: BuildHasher,
[src]
pub fn hasher(&self) -> &S where
S: BuildHasher,
Return a reference to the set's BuildHasher
.
pub fn capacity(&self) -> usize
[src]
pub fn capacity(&self) -> usize
Computes in O(1) time.
impl<T, S> IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
[src]
impl<T, S> IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
pub fn clear(&mut self)
[src]
pub fn clear(&mut self)
Remove all elements in the set, while preserving its capacity.
Computes in O(n) time.
pub fn reserve(&mut self, additional: usize)
[src]
pub fn reserve(&mut self, additional: usize)
FIXME Not implemented fully yet
pub fn insert(&mut self, value: T) -> bool
[src]
pub fn insert(&mut self, value: T) -> bool
Insert the value into the set.
If an equivalent item already exists in the set, it returns
false
leaving the original value in the set and without
altering its insertion order. Otherwise, it inserts the new
item and returns true
.
Computes in O(1) time (amortized average).
pub fn insert_full(&mut self, value: T) -> (usize, bool)
[src]
pub fn insert_full(&mut self, value: T) -> (usize, bool)
Insert the value into the set, and get its index.
If an equivalent item already exists in the set, it returns
the index of the existing item and false
, leaving the
original value in the set and without altering its insertion
order. Otherwise, it inserts the new item and returns the index
of the inserted item and true
.
Computes in O(1) time (amortized average).
ⓘImportant traits for Iter<'a, T>pub fn iter(&self) -> Iter<T>
[src]
pub fn iter(&self) -> Iter<T>
Return an iterator over the values of the set, in their order
ⓘImportant traits for Difference<'a, T, S>pub fn difference<'a, S2>(
&'a self,
other: &'a IndexSet<T, S2>
) -> Difference<'a, T, S2> where
S2: BuildHasher,
[src]
pub fn difference<'a, S2>(
&'a self,
other: &'a IndexSet<T, S2>
) -> Difference<'a, T, S2> where
S2: BuildHasher,
Return an iterator over the values that are in self
but not other
.
Values are produced in the same order that they appear in self
.
ⓘImportant traits for SymmetricDifference<'a, T, S1, S2>pub fn symmetric_difference<'a, S2>(
&'a self,
other: &'a IndexSet<T, S2>
) -> SymmetricDifference<'a, T, S, S2> where
S2: BuildHasher,
[src]
pub fn symmetric_difference<'a, S2>(
&'a self,
other: &'a IndexSet<T, S2>
) -> SymmetricDifference<'a, T, S, S2> where
S2: BuildHasher,
Return an iterator over the values that are in self
or other
,
but not in both.
Values from self
are produced in their original order, followed by
values from other
in their original order.
ⓘImportant traits for Intersection<'a, T, S>pub fn intersection<'a, S2>(
&'a self,
other: &'a IndexSet<T, S2>
) -> Intersection<'a, T, S2> where
S2: BuildHasher,
[src]
pub fn intersection<'a, S2>(
&'a self,
other: &'a IndexSet<T, S2>
) -> Intersection<'a, T, S2> where
S2: BuildHasher,
Return an iterator over the values that are in both self
and other
.
Values are produced in the same order that they appear in self
.
ⓘImportant traits for Union<'a, T, S>pub fn union<'a, S2>(&'a self, other: &'a IndexSet<T, S2>) -> Union<'a, T, S> where
S2: BuildHasher,
[src]
pub fn union<'a, S2>(&'a self, other: &'a IndexSet<T, S2>) -> Union<'a, T, S> where
S2: BuildHasher,
Return an iterator over all values that are in self
or other
.
Values from self
are produced in their original order, followed by
values that are unique to other
in their original order.
pub fn contains<Q: ?Sized>(&self, value: &Q) -> bool where
Q: Hash + Equivalent<T>,
[src]
pub fn contains<Q: ?Sized>(&self, value: &Q) -> bool where
Q: Hash + Equivalent<T>,
Return true
if an equivalent to value
exists in the set.
Computes in O(1) time (average).
pub fn get<Q: ?Sized>(&self, value: &Q) -> Option<&T> where
Q: Hash + Equivalent<T>,
[src]
pub fn get<Q: ?Sized>(&self, value: &Q) -> Option<&T> where
Q: Hash + Equivalent<T>,
Return a reference to the value stored in the set, if it is present,
else None
.
Computes in O(1) time (average).
pub fn get_full<Q: ?Sized>(&self, value: &Q) -> Option<(usize, &T)> where
Q: Hash + Equivalent<T>,
[src]
pub fn get_full<Q: ?Sized>(&self, value: &Q) -> Option<(usize, &T)> where
Q: Hash + Equivalent<T>,
Return item index and value
pub fn replace(&mut self, value: T) -> Option<T>
[src]
pub fn replace(&mut self, value: T) -> Option<T>
Adds a value to the set, replacing the existing value, if any, that is equal to the given one. Returns the replaced value.
Computes in O(1) time (average).
pub fn remove<Q: ?Sized>(&mut self, value: &Q) -> bool where
Q: Hash + Equivalent<T>,
[src]
pub fn remove<Q: ?Sized>(&mut self, value: &Q) -> bool where
Q: Hash + Equivalent<T>,
FIXME Same as .swap_remove
Computes in O(1) time (average).
pub fn swap_remove<Q: ?Sized>(&mut self, value: &Q) -> bool where
Q: Hash + Equivalent<T>,
[src]
pub fn swap_remove<Q: ?Sized>(&mut self, value: &Q) -> bool where
Q: Hash + Equivalent<T>,
Remove the value from the set, and return true
if it was present.
Like Vec::swap_remove
, the value is removed by swapping it with the
last element of the set and popping it off. This perturbs
the postion of what used to be the last element!
Return false
if value
was not in the set.
Computes in O(1) time (average).
pub fn take<Q: ?Sized>(&mut self, value: &Q) -> Option<T> where
Q: Hash + Equivalent<T>,
[src]
pub fn take<Q: ?Sized>(&mut self, value: &Q) -> Option<T> where
Q: Hash + Equivalent<T>,
FIXME Same as .swap_take
Computes in O(1) time (average).
pub fn swap_take<Q: ?Sized>(&mut self, value: &Q) -> Option<T> where
Q: Hash + Equivalent<T>,
[src]
pub fn swap_take<Q: ?Sized>(&mut self, value: &Q) -> Option<T> where
Q: Hash + Equivalent<T>,
Removes and returns the value in the set, if any, that is equal to the given one.
Like Vec::swap_remove
, the value is removed by swapping it with the
last element of the set and popping it off. This perturbs
the postion of what used to be the last element!
Return None
if value
was not in the set.
Computes in O(1) time (average).
pub fn swap_remove_full<Q: ?Sized>(&mut self, value: &Q) -> Option<(usize, T)> where
Q: Hash + Equivalent<T>,
[src]
pub fn swap_remove_full<Q: ?Sized>(&mut self, value: &Q) -> Option<(usize, T)> where
Q: Hash + Equivalent<T>,
Remove the value from the set return it and the index it had.
Like Vec::swap_remove
, the value is removed by swapping it with the
last element of the set and popping it off. This perturbs
the postion of what used to be the last element!
Return None
if value
was not in the set.
pub fn pop(&mut self) -> Option<T>
[src]
pub fn pop(&mut self) -> Option<T>
Remove the last value
Computes in O(1) time (average).
pub fn retain<F>(&mut self, keep: F) where
F: FnMut(&T) -> bool,
[src]
pub fn retain<F>(&mut self, keep: F) where
F: FnMut(&T) -> bool,
Scan through each value in the set and keep those where the
closure keep
returns true
.
The elements are visited in order, and remaining elements keep their order.
Computes in O(n) time (average).
pub fn sort(&mut self) where
T: Ord,
[src]
pub fn sort(&mut self) where
T: Ord,
Sort the set’s values by their default ordering.
See sort_by
for details.
pub fn sort_by<F>(&mut self, compare: F) where
F: FnMut(&T, &T) -> Ordering,
[src]
pub fn sort_by<F>(&mut self, compare: F) where
F: FnMut(&T, &T) -> Ordering,
Sort the set’s values in place using the comparison function compare
.
Computes in O(n log n) time and O(n) space. The sort is stable.
ⓘImportant traits for IntoIter<T>pub fn sorted_by<F>(self, cmp: F) -> IntoIter<T> where
F: FnMut(&T, &T) -> Ordering,
[src]
pub fn sorted_by<F>(self, cmp: F) -> IntoIter<T> where
F: FnMut(&T, &T) -> Ordering,
Sort the values of the set and return a by value iterator of the values with the result.
The sort is stable.
ⓘImportant traits for Drain<'a, T>pub fn drain(&mut self, range: RangeFull) -> Drain<T>
[src]
pub fn drain(&mut self, range: RangeFull) -> Drain<T>
Clears the IndexSet
, returning all values as a drain iterator.
Keeps the allocated memory for reuse.
impl<T, S> IndexSet<T, S>
[src]
impl<T, S> IndexSet<T, S>
pub fn get_index(&self, index: usize) -> Option<&T>
[src]
pub fn get_index(&self, index: usize) -> Option<&T>
Get a value by index
Valid indices are 0 <= index < self.len()
Computes in O(1) time.
pub fn swap_remove_index(&mut self, index: usize) -> Option<T>
[src]
pub fn swap_remove_index(&mut self, index: usize) -> Option<T>
Remove the key-value pair by index
Valid indices are 0 <= index < self.len()
Computes in O(1) time (average).
impl<T, S> IndexSet<T, S> where
T: Eq + Hash,
S: BuildHasher,
[src]
impl<T, S> IndexSet<T, S> where
T: Eq + Hash,
S: BuildHasher,
pub fn is_disjoint<S2>(&self, other: &IndexSet<T, S2>) -> bool where
S2: BuildHasher,
[src]
pub fn is_disjoint<S2>(&self, other: &IndexSet<T, S2>) -> bool where
S2: BuildHasher,
Returns true
if self
has no elements in common with other
.
pub fn is_subset<S2>(&self, other: &IndexSet<T, S2>) -> bool where
S2: BuildHasher,
[src]
pub fn is_subset<S2>(&self, other: &IndexSet<T, S2>) -> bool where
S2: BuildHasher,
Returns true
if all elements of self
are contained in other
.
pub fn is_superset<S2>(&self, other: &IndexSet<T, S2>) -> bool where
S2: BuildHasher,
[src]
pub fn is_superset<S2>(&self, other: &IndexSet<T, S2>) -> bool where
S2: BuildHasher,
Returns true
if all elements of other
are contained in self
.
Trait Implementations
impl<'a, T, S> IntoIterator for &'a IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
[src]
impl<'a, T, S> IntoIterator for &'a IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
type Item = &'a T
The type of the elements being iterated over.
type IntoIter = Iter<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
fn into_iter(self) -> Self::IntoIter
Creates an iterator from a value. Read more
impl<T, S> IntoIterator for IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
[src]
impl<T, S> IntoIterator for IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
type Item = T
The type of the elements being iterated over.
type IntoIter = IntoIter<T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter
[src]
fn into_iter(self) -> Self::IntoIter
Creates an iterator from a value. Read more
impl<T: Clone, S: Clone> Clone for IndexSet<T, S>
[src]
impl<T: Clone, S: Clone> Clone for IndexSet<T, S>
fn clone(&self) -> IndexSet<T, S>
[src]
fn clone(&self) -> IndexSet<T, S>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T, S> Extend<T> for IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
[src]
impl<T, S> Extend<T> for IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher,
fn extend<I: IntoIterator<Item = T>>(&mut self, iterable: I)
[src]
fn extend<I: IntoIterator<Item = T>>(&mut self, iterable: I)
Extends a collection with the contents of an iterator. Read more
impl<'a, T, S> Extend<&'a T> for IndexSet<T, S> where
T: Hash + Eq + Copy,
S: BuildHasher,
[src]
impl<'a, T, S> Extend<&'a T> for IndexSet<T, S> where
T: Hash + Eq + Copy,
S: BuildHasher,
fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iterable: I)
[src]
fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iterable: I)
Extends a collection with the contents of an iterator. Read more
impl<T, S> Eq for IndexSet<T, S> where
T: Eq + Hash,
S: BuildHasher,
[src]
impl<T, S> Eq for IndexSet<T, S> where
T: Eq + Hash,
S: BuildHasher,
impl<T, S> Default for IndexSet<T, S> where
S: BuildHasher + Default,
[src]
impl<T, S> Default for IndexSet<T, S> where
S: BuildHasher + Default,
impl<T, S1, S2> PartialEq<IndexSet<T, S2>> for IndexSet<T, S1> where
T: Hash + Eq,
S1: BuildHasher,
S2: BuildHasher,
[src]
impl<T, S1, S2> PartialEq<IndexSet<T, S2>> for IndexSet<T, S1> where
T: Hash + Eq,
S1: BuildHasher,
S2: BuildHasher,
fn eq(&self, other: &IndexSet<T, S2>) -> bool
[src]
fn eq(&self, other: &IndexSet<T, S2>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl<T, S> Debug for IndexSet<T, S> where
T: Debug + Hash + Eq,
S: BuildHasher,
[src]
impl<T, S> Debug for IndexSet<T, S> where
T: Debug + Hash + Eq,
S: BuildHasher,
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a, 'b, T, S1, S2> Sub<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
[src]
impl<'a, 'b, T, S1, S2> Sub<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
type Output = IndexSet<T, S1>
The resulting type after applying the -
operator.
fn sub(self, other: &'b IndexSet<T, S2>) -> Self::Output
[src]
fn sub(self, other: &'b IndexSet<T, S2>) -> Self::Output
Returns the set difference, cloned into a new set.
Values are collected in the same order that they appear in self
.
impl<'a, 'b, T, S1, S2> BitAnd<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
[src]
impl<'a, 'b, T, S1, S2> BitAnd<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
type Output = IndexSet<T, S1>
The resulting type after applying the &
operator.
fn bitand(self, other: &'b IndexSet<T, S2>) -> Self::Output
[src]
fn bitand(self, other: &'b IndexSet<T, S2>) -> Self::Output
Returns the set intersection, cloned into a new set.
Values are collected in the same order that they appear in self
.
impl<'a, 'b, T, S1, S2> BitOr<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
[src]
impl<'a, 'b, T, S1, S2> BitOr<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
type Output = IndexSet<T, S1>
The resulting type after applying the |
operator.
fn bitor(self, other: &'b IndexSet<T, S2>) -> Self::Output
[src]
fn bitor(self, other: &'b IndexSet<T, S2>) -> Self::Output
Returns the set union, cloned into a new set.
Values from self
are collected in their original order, followed by
values that are unique to other
in their original order.
impl<'a, 'b, T, S1, S2> BitXor<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
[src]
impl<'a, 'b, T, S1, S2> BitXor<&'b IndexSet<T, S2>> for &'a IndexSet<T, S1> where
T: Eq + Hash + Clone,
S1: BuildHasher + Default,
S2: BuildHasher,
type Output = IndexSet<T, S1>
The resulting type after applying the ^
operator.
fn bitxor(self, other: &'b IndexSet<T, S2>) -> Self::Output
[src]
fn bitxor(self, other: &'b IndexSet<T, S2>) -> Self::Output
Returns the set symmetric-difference, cloned into a new set.
Values from self
are collected in their original order, followed by
values from other
in their original order.
impl<T, S> FromIterator<T> for IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher + Default,
[src]
impl<T, S> FromIterator<T> for IndexSet<T, S> where
T: Hash + Eq,
S: BuildHasher + Default,
fn from_iter<I: IntoIterator<Item = T>>(iterable: I) -> Self
[src]
fn from_iter<I: IntoIterator<Item = T>>(iterable: I) -> Self
Creates a value from an iterator. Read more
Auto Trait Implementations
impl<T, S> Send for IndexSet<T, S> where
S: Send,
T: Send,
impl<T, S> Send for IndexSet<T, S> where
S: Send,
T: Send,
impl<T, S> Sync for IndexSet<T, S> where
S: Sync,
T: Sync,
impl<T, S> Sync for IndexSet<T, S> where
S: Sync,
T: Sync,
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<I> IntoIterator for I where
I: Iterator,
[src]
impl<I> IntoIterator for I where
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
fn into_iter(self) -> I
Creates an iterator from a value. Read more
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,