Struct move_compiler::shared::unique_set::UniqueSet
source · [−]pub struct UniqueSet<T: TName>(_);
Expand description
Unique set wrapper around UniqueMap
where the value of the map is not needed
Implementations
sourceimpl<T: TName> UniqueSet<T>
impl<T: TName> UniqueSet<T>
pub fn new() -> Self
pub fn is_empty(&self) -> bool
pub fn len(&self) -> usize
pub fn add(&mut self, x: T) -> Result<(), (T, T::Loc)>
pub fn remove(&mut self, x: &T) -> bool
pub fn remove_(&mut self, x: &T::Key) -> bool
pub fn contains(&self, x: &T) -> bool
pub fn contains_(&self, x_: &T::Key) -> bool
pub fn get_loc(&self, x: &T) -> Option<&T::Loc>
pub fn get_loc_(&self, x_: &T::Key) -> Option<&T::Loc>
pub fn intersect(&self, other: &Self) -> Self
pub fn union(&self, other: &Self) -> Self
pub fn is_subset(&self, other: &Self) -> bool
pub fn iter(&self) -> Iter<'_, T>ⓘNotable traits for Iter<'a, T>impl<'a, T: TName> Iterator for Iter<'a, T> type Item = (T::Loc, &'a T::Key);
pub fn cloned_iter(&self) -> impl Iterator<Item = T>
pub fn from_elements(
iter: impl IntoIterator<Item = T>
) -> Result<Self, (T::Key, T::Loc, T::Loc)>
pub fn from_elements_(
loc: T::Loc,
iter: impl IntoIterator<Item = T::Key>
) -> Result<Self, (T::Key, T::Loc, T::Loc)>
Trait Implementations
sourceimpl<T: TName> IntoIterator for UniqueSet<T>
impl<T: TName> IntoIterator for UniqueSet<T>
sourceimpl<'a, T: TName> IntoIterator for &'a UniqueSet<T>
impl<'a, T: TName> IntoIterator for &'a UniqueSet<T>
sourceimpl<T: TName> Ord for UniqueSet<T>
impl<T: TName> Ord for UniqueSet<T>
sourceimpl<T: TName> PartialOrd<UniqueSet<T>> for UniqueSet<T>
impl<T: TName> PartialOrd<UniqueSet<T>> for UniqueSet<T>
sourcefn partial_cmp(&self, other: &UniqueSet<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &UniqueSet<T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<T: TName> Eq for UniqueSet<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for UniqueSet<T> where
<T as TName>::Key: RefUnwindSafe,
<T as TName>::Loc: RefUnwindSafe,
impl<T> Send for UniqueSet<T> where
<T as TName>::Key: Send,
<T as TName>::Loc: Send,
impl<T> Sync for UniqueSet<T> where
<T as TName>::Key: Sync,
<T as TName>::Loc: Sync,
impl<T> Unpin for UniqueSet<T>
impl<T> UnwindSafe for UniqueSet<T> where
<T as TName>::Key: RefUnwindSafe,
<T as TName>::Loc: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more