cairo_lang_utils::unordered_hash_set

Struct UnorderedHashSet

source
pub struct UnorderedHashSet<Key, BH = RandomState>(/* private fields */);
Expand description

A hash set that does not care about the order of insertion. In particular, it does not support iterating, in order to guarantee deterministic compilation. For an iterable version see OrderedHashSet.

Implementations§

source§

impl<Key, BH> UnorderedHashSet<Key, BH>

source

pub fn len(&self) -> usize

Returns the number of elements in the set.

source

pub fn is_empty(&self) -> bool

Returns true if the set contains no elements.

source

pub fn clear(&mut self)

Clears the set, removing all values.

source§

impl<Key: Hash + Eq, BH: BuildHasher> UnorderedHashSet<Key, BH>

source

pub fn insert(&mut self, key: Key) -> bool

Inserts the value into the set.

If an equivalent item already exists in the set, returns false. Otherwise, returns true.

source

pub fn remove<Q: ?Sized + Hash + Eq>(&mut self, value: &Q) -> bool
where Key: Borrow<Q>,

Removes a value from the set. Returns whether the value was present in the set.

source

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

Extends the set with the content of the given iterator.

source

pub fn extend_unordered(&mut self, other: Self)

Extends the set with the content of another set.

source

pub fn contains<Q: ?Sized + Hash + Eq>(&self, value: &Q) -> bool
where Key: Borrow<Q>,

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

Trait Implementations§

source§

impl<Key: Clone, BH: Clone> Clone for UnorderedHashSet<Key, BH>

source§

fn clone(&self) -> UnorderedHashSet<Key, BH>

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl<Key: Debug, BH: Debug> Debug for UnorderedHashSet<Key, BH>

source§

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

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

impl<K, BH: Default> Default for UnorderedHashSet<K, BH>

source§

fn default() -> Self

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

impl<Key: Hash + Eq, BH: BuildHasher + Default> FromIterator<Key> for UnorderedHashSet<Key, BH>

source§

fn from_iter<T: IntoIterator<Item = Key>>(iter: T) -> Self

Creates a value from an iterator. Read more
source§

impl<K, BH> PartialEq for UnorderedHashSet<K, BH>
where K: Eq + Hash, BH: BuildHasher,

source§

fn eq(&self, other: &Self) -> 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, Key, BH> Sub for &'a UnorderedHashSet<Key, BH>
where &'a HashSet<Key, BH>: Sub<Output = HashSet<Key, BH>>,

source§

type Output = UnorderedHashSet<Key, BH>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl<K, BH> Eq for UnorderedHashSet<K, BH>
where K: Eq + Hash, BH: BuildHasher,

Auto Trait Implementations§

§

impl<Key, BH> Freeze for UnorderedHashSet<Key, BH>
where BH: Freeze,

§

impl<Key, BH> RefUnwindSafe for UnorderedHashSet<Key, BH>
where BH: RefUnwindSafe, Key: RefUnwindSafe,

§

impl<Key, BH> Send for UnorderedHashSet<Key, BH>
where BH: Send, Key: Send,

§

impl<Key, BH> Sync for UnorderedHashSet<Key, BH>
where BH: Sync, Key: Sync,

§

impl<Key, BH> Unpin for UnorderedHashSet<Key, BH>
where BH: Unpin, Key: Unpin,

§

impl<Key, BH> UnwindSafe for UnorderedHashSet<Key, BH>
where BH: UnwindSafe, Key: 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, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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, 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> 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> Upcast<T> for T
where T: ?Sized,

source§

fn upcast(&self) -> &T

source§

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

source§

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