pub struct VarRemapping {
pub remapping: OrderedHashMap<VariableId, VarUsage>,
}
Expand description
Remapping of lowered variable ids. Useful for convergence of branches.
Fields§
§remapping: OrderedHashMap<VariableId, VarUsage>
Map from new_var to old_var (since new_var cannot appear twice, but old_var can).
Methods from Deref<Target = OrderedHashMap<VariableId, VarUsage>>§
Sourcepub fn iter(&self) -> Iter<'_, Key, Value>
pub fn iter(&self) -> Iter<'_, Key, Value>
Returns an iterator over the key-value pairs of the map, in their order.
Sourcepub fn iter_mut(&mut self) -> IterMut<'_, Key, Value>
pub fn iter_mut(&mut self) -> IterMut<'_, Key, Value>
Returns a mutable iterator over the key-value pairs of the map, in their order.
Sourcepub fn keys(&self) -> Keys<'_, Key, Value>
pub fn keys(&self) -> Keys<'_, Key, Value>
Returns an iterator over the keys of the map, in their order.
Sourcepub fn values(&self) -> Values<'_, Key, Value>
pub fn values(&self) -> Values<'_, Key, Value>
Returns an iterator over the values of the map, in their order.
Sourcepub fn shift_remove_index(&mut self, index: usize) -> Option<(Key, Value)>
pub fn shift_remove_index(&mut self, index: usize) -> Option<(Key, Value)>
Removes the entry at the given index.
Returns the key-value pair at the given index (if present).
Sourcepub fn get<Q>(&self, key: &Q) -> Option<&Value>
pub fn get<Q>(&self, key: &Q) -> Option<&Value>
Returns a reference to the value stored for key, if it is present, else None.
Computes in O(1) time (average).
Sourcepub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut Value>
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut Value>
Returns a mutable reference to the value stored for key, if it is present, else None.
Computes in O(1) time (average).
Sourcepub fn entry(&mut self, key: Key) -> Entry<'_, Key, Value>
pub fn entry(&mut self, key: Key) -> Entry<'_, Key, Value>
Gets the given key’s corresponding entry in the map for insertion and/or in-place manipulation.
Computes in O(1) time (amortized average).
Sourcepub fn insert(&mut self, key: Key, value: Value) -> Option<Value>
pub fn insert(&mut self, key: Key, value: Value) -> Option<Value>
Insert a key-value pair in the map.
If an equivalent key already exists in the map: the key remains and retains in its place in the order, its corresponding value is updated with value and the older value is returned inside Some(_).
If no equivalent key existed in the map: the new key-value pair is inserted, last in order, and None is returned.
Computes in O(1) time (amortized average).
See also entry if you you want to insert or modify or if you need to get the index of the corresponding key-value pair.
Sourcepub fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = (Key, Value)>,
pub fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = (Key, Value)>,
Extends the map with the content of the given iterator.
Sourcepub fn contains_key<Q>(&self, key: &Q) -> bool
pub fn contains_key<Q>(&self, key: &Q) -> bool
Returns true if an equivalent to key exists in the map.
Sourcepub fn shift_remove<Q>(&mut self, key: &Q) -> Option<Value>
pub fn shift_remove<Q>(&mut self, key: &Q) -> Option<Value>
Removes the entry for the given key, preserving the order of entries.
Returns the value associated with the key (if present).
Sourcepub fn swap_remove<Q>(&mut self, key: &Q) -> Option<Value>
pub fn swap_remove<Q>(&mut self, key: &Q) -> Option<Value>
Removes the entry for the given key by swapping it with the last element. Thus the order of elements is not preserved, but the resulting order is still deterministic.
Returns the value associated with the key (if present).
Sourcepub fn retain(&mut self, keep: impl FnMut(&Key, &mut Value) -> bool)
pub fn retain(&mut self, keep: impl FnMut(&Key, &mut Value) -> bool)
Scan through each key-value pair in the map 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).
Sourcepub fn eq_unordered(&self, other: &OrderedHashMap<Key, Value, BH>) -> boolwhere
Value: Eq,
pub fn eq_unordered(&self, other: &OrderedHashMap<Key, Value, BH>) -> boolwhere
Value: Eq,
Returns true if the maps are equal, ignoring the order of the entries.
Trait Implementations§
Source§impl Clone for VarRemapping
impl Clone for VarRemapping
Source§fn clone(&self) -> VarRemapping
fn clone(&self) -> VarRemapping
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for VarRemapping
impl Debug for VarRemapping
Source§impl DebugWithDb<LoweredFormatter<'_>> for VarRemapping
impl DebugWithDb<LoweredFormatter<'_>> for VarRemapping
Source§impl Default for VarRemapping
impl Default for VarRemapping
Source§fn default() -> VarRemapping
fn default() -> VarRemapping
Source§impl Deref for VarRemapping
impl Deref for VarRemapping
Source§impl DerefMut for VarRemapping
impl DerefMut for VarRemapping
Source§impl PartialEq for VarRemapping
impl PartialEq for VarRemapping
impl Eq for VarRemapping
impl StructuralPartialEq for VarRemapping
Auto Trait Implementations§
impl Freeze for VarRemapping
impl RefUnwindSafe for VarRemapping
impl Send for VarRemapping
impl Sync for VarRemapping
impl Unpin for VarRemapping
impl UnwindSafe for VarRemapping
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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