Struct ordermap::set::OrderSet [] [src]

pub struct OrderSet<T, S = RandomState> { /* fields omitted */ }

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.

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 ordermap::OrderSet;

// Collects which letters appear in a sentence.
let letters: OrderSet<_> = "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> OrderSet<T>
[src]

[src]

Create a new set. (Does not allocate.)

[src]

Create a new set with capacity for n elements. (Does not allocate if n is zero.)

Computes in O(n) time.

impl<T, S> OrderSet<T, S>
[src]

[src]

Create a new set with capacity for n elements. (Does not allocate if n is zero.)

Computes in O(n) time.

[src]

Return the number of elements in the set.

Computes in O(1) time.

[src]

Returns true if the set contains no elements.

Computes in O(1) time.

[src]

Create a new set with hash_builder

[src]

Return a reference to the set's BuildHasher.

[src]

Computes in O(1) time.

impl<T, S> OrderSet<T, S> where
    T: Hash + Eq,
    S: BuildHasher
[src]

[src]

Remove all elements in the set, while preserving its capacity.

Computes in O(n) time.

[src]

FIXME Not implemented fully yet

[src]

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).

[src]

Return an iterator over the values of the set, in their order

[src]

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.

[src]

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.

[src]

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.

[src]

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.

[src]

Return true if an equivalent to value exists in the set.

Computes in O(1) time (average).

[src]

Return a reference to the value stored in the set, if it is present, else None.

Computes in O(1) time (average).

[src]

Return item index and value

[src]

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).

[src]

FIXME Same as .swap_remove

Computes in O(1) time (average).

[src]

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).

[src]

FIXME Same as .swap_take

Computes in O(1) time (average).

[src]

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).

[src]

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.

[src]

Remove the last value

Computes in O(1) time (average).

[src]

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).

[src]

Sort the set’s values by their default ordering.

See sort_by for details.

[src]

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.

[src]

Sort the values of the set and return a by value iterator of the values with the result.

The sort is stable.

[src]

Clears the OrderSet, returning all values as a drain iterator. Keeps the allocated memory for reuse.

impl<T, S> OrderSet<T, S>
[src]

[src]

Get a value by index

Valid indices are 0 <= index < self.len()

Computes in O(1) time.

[src]

Remove the key-value pair by index

Valid indices are 0 <= index < self.len()

Computes in O(1) time (average).

impl<T, S> OrderSet<T, S> where
    T: Eq + Hash,
    S: BuildHasher
[src]

[src]

Returns true if self has no elements in common with other.

[src]

Returns true if all elements of self are contained in other.

[src]

Returns true if all elements of other are contained in self.

Trait Implementations

impl<T, S> Serialize for OrderSet<T, S> where
    T: Serialize + Hash + Eq,
    S: BuildHasher
[src]

Requires crate feature "serde-1"

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de, T, S> Deserialize<'de> for OrderSet<T, S> where
    T: Deserialize<'de> + Eq + Hash,
    S: Default + BuildHasher
[src]

Requires crate feature "serde-1"

[src]

Deserialize this value from the given Serde deserializer. Read more

impl<T: Clone, S: Clone> Clone for OrderSet<T, S>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T, S> Debug for OrderSet<T, S> where
    T: Debug + Hash + Eq,
    S: BuildHasher
[src]

[src]

Formats the value using the given formatter.

impl<'a, T, S> IntoIterator for &'a OrderSet<T, S> where
    T: Hash + Eq,
    S: BuildHasher
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<T, S> IntoIterator for OrderSet<T, S> where
    T: Hash + Eq,
    S: BuildHasher
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<T, S> FromIterator<T> for OrderSet<T, S> where
    T: Hash + Eq,
    S: BuildHasher + Default
[src]

[src]

Creates a value from an iterator. Read more

impl<T, S> Extend<T> for OrderSet<T, S> where
    T: Hash + Eq,
    S: BuildHasher
[src]

[src]

Extends a collection with the contents of an iterator. Read more

impl<'a, T, S> Extend<&'a T> for OrderSet<T, S> where
    T: Hash + Eq + Copy,
    S: BuildHasher
[src]

[src]

Extends a collection with the contents of an iterator. Read more

impl<T, S> Default for OrderSet<T, S> where
    S: BuildHasher + Default
[src]

[src]

Return an empty OrderSet

impl<T, S1, S2> PartialEq<OrderSet<T, S2>> for OrderSet<T, S1> where
    T: Hash + Eq,
    S1: BuildHasher,
    S2: BuildHasher
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl<T, S> Eq for OrderSet<T, S> where
    T: Eq + Hash,
    S: BuildHasher
[src]

impl<'a, 'b, T, S1, S2> BitAnd<&'b OrderSet<T, S2>> for &'a OrderSet<T, S1> where
    T: Eq + Hash + Clone,
    S1: BuildHasher + Default,
    S2: BuildHasher
[src]

The resulting type after applying the & operator.

[src]

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 OrderSet<T, S2>> for &'a OrderSet<T, S1> where
    T: Eq + Hash + Clone,
    S1: BuildHasher + Default,
    S2: BuildHasher
[src]

The resulting type after applying the | operator.

[src]

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 OrderSet<T, S2>> for &'a OrderSet<T, S1> where
    T: Eq + Hash + Clone,
    S1: BuildHasher + Default,
    S2: BuildHasher
[src]

The resulting type after applying the ^ operator.

[src]

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<'a, 'b, T, S1, S2> Sub<&'b OrderSet<T, S2>> for &'a OrderSet<T, S1> where
    T: Eq + Hash + Clone,
    S1: BuildHasher + Default,
    S2: BuildHasher
[src]

The resulting type after applying the - operator.

[src]

Returns the set difference, cloned into a new set.

Values are collected in the same order that they appear in self.