GenericHashSet

Struct GenericHashSet 

Source
pub struct GenericHashSet<A, S, P>{ /* private fields */ }
Expand description

An unordered set.

An immutable hash set using [hash array mapped tries] 1.

Most operations on this set are O(logx n) for a suitably high x that it should be nearly O(1) for most sets. Because of this, it’s a great choice for a generic set as long as you don’t mind that values will need to implement Hash and Eq.

Values will have a predictable order based on the hasher being used. Unless otherwise specified, this will be the standard RandomState hasher.

Implementations§

Source§

impl<A, S, P> GenericHashSet<A, S, P>

Source

pub fn unit(a: A) -> GenericHashSet<A, S, P>

Construct a set with a single value.

§Examples
let set = HashSet::unit(123);
assert!(set.contains(&123));
Source§

impl<A, S, P> GenericHashSet<A, S, P>

Source

pub fn new() -> GenericHashSet<A, S, P>
where S: Default,

Construct an empty set.

Source

pub fn is_empty(&self) -> bool

Test whether a set is empty.

Time: O(1)

§Examples
assert!(
  !hashset![1, 2, 3].is_empty()
);
assert!(
  HashSet::<i32>::new().is_empty()
);
Source

pub fn len(&self) -> usize

Get the size of a set.

Time: O(1)

§Examples
assert_eq!(3, hashset![1, 2, 3].len());
Source

pub fn ptr_eq(&self, other: &GenericHashSet<A, S, P>) -> bool

Test whether two sets refer to the same content in memory.

This is true if the two sides are references to the same set, or if the two sets refer to the same root node.

This would return true if you’re comparing a set to itself, or if you’re comparing a set to a fresh clone of itself.

Time: O(1)

Source

pub fn with_hasher(hasher: S) -> GenericHashSet<A, S, P>

Construct an empty hash set using the provided hasher.

Source

pub fn hasher(&self) -> &S

Get a reference to the set’s BuildHasher.

Source

pub fn new_from<A2>(&self) -> GenericHashSet<A2, S, P>
where A2: Hash + Eq + Clone, S: Clone,

Construct an empty hash set using the same hasher as the current hash set.

Source

pub fn clear(&mut self)

Discard all elements from the set.

This leaves you with an empty set, and all elements that were previously inside it are dropped.

Time: O(n)

§Examples
let mut set = hashset![1, 2, 3];
set.clear();
assert!(set.is_empty());
Source

pub fn iter(&self) -> Iter<'_, A, P>

Get an iterator over the values in a hash set.

Please note that the order is consistent between sets using the same hasher, but no other ordering guarantee is offered. Items will not come out in insertion order or sort order. They will, however, come out in the same order every time for the same set.

Source§

impl<A, S, P> GenericHashSet<A, S, P>
where A: Hash + Eq, S: BuildHasher, P: SharedPointerKind,

Source

pub fn contains<BA>(&self, a: &BA) -> bool
where BA: Hash + Eq + ?Sized, A: Borrow<BA>,

Test if a value is part of a set.

Time: O(log n)

Source

pub fn is_subset<RS>(&self, other: RS) -> bool
where RS: Borrow<GenericHashSet<A, S, P>>,

Test whether a set is a subset of another set, meaning that all values in our set must also be in the other set.

Time: O(n log n)

Source

pub fn is_proper_subset<RS>(&self, other: RS) -> bool
where RS: Borrow<GenericHashSet<A, S, P>>,

Test whether a set is a proper subset of another set, meaning that all values in our set must also be in the other set. A proper subset must also be smaller than the other set.

Time: O(n log n)

Source§

impl<A, S, P> GenericHashSet<A, S, P>

Source

pub fn insert(&mut self, a: A) -> Option<A>

Insert a value into a set.

Time: O(log n)

Source

pub fn remove<BA>(&mut self, a: &BA) -> Option<A>
where BA: Hash + Eq + ?Sized, A: Borrow<BA>,

Remove a value from a set if it exists.

Time: O(log n)

Source

pub fn update(&self, a: A) -> GenericHashSet<A, S, P>

Construct a new set from the current set with the given value added.

Time: O(log n)

§Examples
let set = hashset![123];
assert_eq!(
  set.update(456),
  hashset![123, 456]
);
Source

pub fn without<BA>(&self, a: &BA) -> GenericHashSet<A, S, P>
where BA: Hash + Eq + ?Sized, A: Borrow<BA>,

Construct a new set with the given value removed if it’s in the set.

Time: O(log n)

Source

pub fn retain<F>(&mut self, f: F)
where F: FnMut(&A) -> bool,

Filter out values from a set which don’t satisfy a predicate.

This is slightly more efficient than filtering using an iterator, in that it doesn’t need to rehash the retained values, but it still needs to reconstruct the entire tree structure of the set.

Time: O(n log n)

§Examples
let mut set = hashset![1, 2, 3];
set.retain(|v| *v > 1);
let expected = hashset![2, 3];
assert_eq!(expected, set);
Source

pub fn union(self, other: GenericHashSet<A, S, P>) -> GenericHashSet<A, S, P>

Construct the union of two sets.

Time: O(n log n)

§Examples
let set1 = hashset!{1, 2};
let set2 = hashset!{2, 3};
let expected = hashset!{1, 2, 3};
assert_eq!(expected, set1.union(set2));
Source

pub fn unions<I>(i: I) -> GenericHashSet<A, S, P>
where I: IntoIterator<Item = GenericHashSet<A, S, P>>, S: Default,

Construct the union of multiple sets.

Time: O(n log n)

Source

pub fn difference( self, other: GenericHashSet<A, S, P>, ) -> GenericHashSet<A, S, P>

👎Deprecated since 2.0.1: to avoid conflicting behaviors between std and imbl, the difference alias for symmetric_difference will be removed.

Construct the symmetric difference between two sets.

This is an alias for the symmetric_difference method.

Time: O(n log n)

§Examples
let set1 = hashset!{1, 2};
let set2 = hashset!{2, 3};
let expected = hashset!{1, 3};
assert_eq!(expected, set1.difference(set2));
Source

pub fn symmetric_difference( self, other: GenericHashSet<A, S, P>, ) -> GenericHashSet<A, S, P>

Construct the symmetric difference between two sets.

Time: O(n log n)

§Examples
let set1 = hashset!{1, 2};
let set2 = hashset!{2, 3};
let expected = hashset!{1, 3};
assert_eq!(expected, set1.symmetric_difference(set2));
Source

pub fn relative_complement( self, other: GenericHashSet<A, S, P>, ) -> GenericHashSet<A, S, P>

Construct the relative complement between two sets, that is the set of values in self that do not occur in other.

Time: O(m log n) where m is the size of the other set

§Examples
let set1 = hashset!{1, 2};
let set2 = hashset!{2, 3};
let expected = hashset!{1};
assert_eq!(expected, set1.relative_complement(set2));
Source

pub fn intersection( self, other: GenericHashSet<A, S, P>, ) -> GenericHashSet<A, S, P>

Construct the intersection of two sets.

Time: O(n log n)

§Examples
let set1 = hashset!{1, 2};
let set2 = hashset!{2, 3};
let expected = hashset!{2};
assert_eq!(expected, set1.intersection(set2));

Trait Implementations§

Source§

impl<'a, A, S, P> Add for &'a GenericHashSet<A, S, P>

Source§

type Output = GenericHashSet<A, S, P>

The resulting type after applying the + operator.
Source§

fn add( self, other: &'a GenericHashSet<A, S, P>, ) -> <&'a GenericHashSet<A, S, P> as Add>::Output

Performs the + operation. Read more
Source§

impl<A, S, P> Add for GenericHashSet<A, S, P>

Source§

type Output = GenericHashSet<A, S, P>

The resulting type after applying the + operator.
Source§

fn add( self, other: GenericHashSet<A, S, P>, ) -> <GenericHashSet<A, S, P> as Add>::Output

Performs the + operation. Read more
Source§

impl<A, S, P> Clone for GenericHashSet<A, S, P>
where P: SharedPointerKind, A: Clone, S: Clone,

Source§

fn clone(&self) -> GenericHashSet<A, S, P>

Clone a set.

Time: O(1)

1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<A, S, P> Debug for GenericHashSet<A, S, P>
where A: Hash + Eq + Debug, S: BuildHasher, P: SharedPointerKind,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<A, S, P> Default for GenericHashSet<A, S, P>

Source§

fn default() -> GenericHashSet<A, S, P>

Returns the “default value” for a type. Read more
Source§

impl<'de, A, S, P> Deserialize<'de> for GenericHashSet<A, S, P>

Source§

fn deserialize<D>( des: D, ) -> Result<GenericHashSet<A, S, P>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<A, S, R, P> Extend<R> for GenericHashSet<A, S, P>
where P: SharedPointerKind, A: Hash + Eq + Clone + From<R>, S: BuildHasher + Clone,

Source§

fn extend<I>(&mut self, iter: I)
where I: IntoIterator<Item = R>,

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

fn extend_one(&mut self, item: A)

🔬This is a nightly-only experimental API. (extend_one)
Extends a collection with exactly one element.
Source§

fn extend_reserve(&mut self, additional: usize)

🔬This is a nightly-only experimental API. (extend_one)
Reserves capacity in a collection for the given number of additional elements. Read more
Source§

impl<'a, A, S, P> From<&'a [A]> for GenericHashSet<A, S, P>

Source§

fn from(slice: &'a [A]) -> GenericHashSet<A, S, P>

Converts to this type from the input type.
Source§

impl<'a, A, S, P> From<&'a BTreeSet<A>> for GenericHashSet<A, S, P>

Source§

fn from(btree_set: &BTreeSet<A>) -> GenericHashSet<A, S, P>

Converts to this type from the input type.
Source§

impl<'s, 'a, A, OA, SA, SB, P1, P2> From<&'s GenericHashSet<&'a A, SA, P1>> for GenericHashSet<OA, SB, P2>
where A: ToOwned<Owned = OA> + Hash + Eq + ?Sized, OA: Borrow<A> + Hash + Eq + Clone, SA: BuildHasher, SB: BuildHasher + Default + Clone, P1: SharedPointerKind, P2: SharedPointerKind,

Source§

fn from(set: &GenericHashSet<&A, SA, P1>) -> GenericHashSet<OA, SB, P2>

Converts to this type from the input type.
Source§

impl<A, S, P1, P2> From<&GenericHashSet<A, S, P2>> for GenericOrdSet<A, P1>

Source§

fn from(hashset: &GenericHashSet<A, S, P2>) -> GenericOrdSet<A, P1>

Converts to this type from the input type.
Source§

impl<'a, A, S, P1, P2> From<&'a GenericOrdSet<A, P2>> for GenericHashSet<A, S, P1>

Source§

fn from(ordset: &GenericOrdSet<A, P2>) -> GenericHashSet<A, S, P1>

Converts to this type from the input type.
Source§

impl<'a, A, S, P1, P2> From<&'a GenericVector<A, P2>> for GenericHashSet<A, S, P1>

Source§

fn from(vector: &GenericVector<A, P2>) -> GenericHashSet<A, S, P1>

Converts to this type from the input type.
Source§

impl<'a, A, S, P> From<&'a HashSet<A>> for GenericHashSet<A, S, P>

Source§

fn from(hash_set: &HashSet<A>) -> GenericHashSet<A, S, P>

Converts to this type from the input type.
Source§

impl<'a, A, S, P> From<&'a Vec<A>> for GenericHashSet<A, S, P>

Source§

fn from(vec: &Vec<A>) -> GenericHashSet<A, S, P>

Converts to this type from the input type.
Source§

impl<A, S, const N: usize, P> From<[A; N]> for GenericHashSet<A, S, P>

Source§

fn from(arr: [A; N]) -> GenericHashSet<A, S, P>

Converts to this type from the input type.
Source§

impl<A, S, P1, P2> From<GenericHashSet<A, S, P2>> for GenericOrdSet<A, P1>

Source§

fn from(hashset: GenericHashSet<A, S, P2>) -> GenericOrdSet<A, P1>

Converts to this type from the input type.
Source§

impl<A, S, P1, P2> From<GenericOrdSet<A, P2>> for GenericHashSet<A, S, P1>

Source§

fn from(ordset: GenericOrdSet<A, P2>) -> GenericHashSet<A, S, P1>

Converts to this type from the input type.
Source§

impl<A, S, P1, P2> From<GenericVector<A, P2>> for GenericHashSet<A, S, P1>

Source§

fn from(vector: GenericVector<A, P2>) -> GenericHashSet<A, S, P1>

Converts to this type from the input type.
Source§

impl<A, S, P> From<HashSet<A>> for GenericHashSet<A, S, P>

Source§

fn from(hash_set: HashSet<A>) -> GenericHashSet<A, S, P>

Converts to this type from the input type.
Source§

impl<A, S, P> From<Vec<A>> for GenericHashSet<A, S, P>

Source§

fn from(vec: Vec<A>) -> GenericHashSet<A, S, P>

Converts to this type from the input type.
Source§

impl<A, RA, S, P> FromIterator<RA> for GenericHashSet<A, S, P>
where A: Hash + Eq + Clone + From<RA>, S: BuildHasher + Default + Clone, P: SharedPointerKind,

Source§

fn from_iter<T>(i: T) -> GenericHashSet<A, S, P>
where T: IntoIterator<Item = RA>,

Creates a value from an iterator. Read more
Source§

impl<'a, A, S, P> IntoIterator for &'a GenericHashSet<A, S, P>
where A: Hash + Eq, S: BuildHasher, P: SharedPointerKind,

Source§

type Item = &'a A

The type of the elements being iterated over.
Source§

type IntoIter = Iter<'a, A, P>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <&'a GenericHashSet<A, S, P> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<A, S, P> IntoIterator for GenericHashSet<A, S, P>
where A: Hash + Eq + Clone, S: BuildHasher, P: SharedPointerKind,

Source§

type Item = A

The type of the elements being iterated over.
Source§

type IntoIter = ConsumingIter<<GenericHashSet<A, S, P> as IntoIterator>::Item, P>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <GenericHashSet<A, S, P> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a, A, S, P> Mul for &'a GenericHashSet<A, S, P>

Source§

type Output = GenericHashSet<A, S, P>

The resulting type after applying the * operator.
Source§

fn mul( self, other: &'a GenericHashSet<A, S, P>, ) -> <&'a GenericHashSet<A, S, P> as Mul>::Output

Performs the * operation. Read more
Source§

impl<A, S, P> Mul for GenericHashSet<A, S, P>

Source§

type Output = GenericHashSet<A, S, P>

The resulting type after applying the * operator.
Source§

fn mul( self, other: GenericHashSet<A, S, P>, ) -> <GenericHashSet<A, S, P> as Mul>::Output

Performs the * operation. Read more
Source§

impl<A, S1, P1, S2, P2> PartialEq<GenericHashSet<A, S2, P2>> for GenericHashSet<A, S1, P1>

Source§

fn eq(&self, other: &GenericHashSet<A, S2, P2>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, S, P> Serialize for GenericHashSet<A, S, P>

Source§

fn serialize<Ser>( &self, ser: Ser, ) -> Result<<Ser as Serializer>::Ok, <Ser as Serializer>::Error>
where Ser: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<A, S, P> Sum for GenericHashSet<A, S, P>

Source§

fn sum<I>(it: I) -> GenericHashSet<A, S, P>
where I: Iterator<Item = GenericHashSet<A, S, P>>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl<A, S, P> Eq for GenericHashSet<A, S, P>
where A: Hash + Eq, S: BuildHasher, P: SharedPointerKind,

Auto Trait Implementations§

§

impl<A, S, P> Freeze for GenericHashSet<A, S, P>
where S: Freeze, P: Freeze,

§

impl<A, S, P> RefUnwindSafe for GenericHashSet<A, S, P>

§

impl<A, S, P> Send for GenericHashSet<A, S, P>
where S: Send, P: Send + Sync, A: Sync + Send,

§

impl<A, S, P> Sync for GenericHashSet<A, S, P>
where S: Sync, P: Sync + Send, A: Sync + Send,

§

impl<A, S, P> Unpin for GenericHashSet<A, S, P>
where S: Unpin,

§

impl<A, S, P> UnwindSafe for GenericHashSet<A, S, P>
where S: UnwindSafe, P: UnwindSafe, A: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,