Struct rustc_ap_rustc_data_structures::unify::UnificationTable [−][src]
pub struct UnificationTable<S> where
S: UnificationStoreBase, { /* fields omitted */ }
Expand description
Table of unification keys and their values. You must define a key type K
that implements the UnifyKey
trait. Unification tables can be used in two-modes:
- in-place (
UnificationTable<InPlace<K>>
orInPlaceUnificationTable<K>
):- This is the standard mutable mode, where the array is modified in place.
- To do backtracking, you can employ the
snapshot
androllback_to
methods.
- persistent (
UnificationTable<Persistent<K>>
orPersistentUnificationTable<K>
):- In this mode, we use a persistent vector to store the data, so that cloning the table is an O(1) operation.
- This implies that ordinary operations are quite a bit slower though.
- Requires the
persistent
feature be selected in your Cargo.toml file.
Implementations
impl<S> UnificationTable<S> where
S: UnificationStoreBase + Default,
[src]
impl<S> UnificationTable<S> where
S: UnificationStoreBase + Default,
[src]pub fn new() -> UnificationTable<S>
[src]
impl<S> UnificationTable<S> where
S: UnificationStore,
[src]
impl<S> UnificationTable<S> where
S: UnificationStore,
[src]pub fn snapshot(&mut self) -> Snapshot<S>
[src]
pub fn snapshot(&mut self) -> Snapshot<S>
[src]Starts a new snapshot. Each snapshot must be either rolled back or committed in a “LIFO” (stack) order.
pub fn rollback_to(&mut self, snapshot: Snapshot<S>)
[src]
pub fn rollback_to(&mut self, snapshot: Snapshot<S>)
[src]Reverses all changes since the last snapshot. Also removes any keys that have been created since then.
impl<S> UnificationTable<S> where
S: UnificationStoreBase,
[src]
impl<S> UnificationTable<S> where
S: UnificationStoreBase,
[src]impl<S> UnificationTable<S> where
S: UnificationStoreMut,
[src]
impl<S> UnificationTable<S> where
S: UnificationStoreMut,
[src]pub fn new_key(
&mut self,
value: <S as UnificationStoreBase>::Value
) -> <S as UnificationStoreBase>::Key
[src]
pub fn new_key(
&mut self,
value: <S as UnificationStoreBase>::Value
) -> <S as UnificationStoreBase>::Key
[src]Starts a new snapshot. Each snapshot must be either Creates a fresh key with the given value.
pub fn reserve(&mut self, num_new_keys: usize)
[src]
pub fn reserve(&mut self, num_new_keys: usize)
[src]Reserve memory for num_new_keys
to be created. Does not
actually create the new keys; you must then invoke new_key
.
pub fn reset_unifications(
&mut self,
value: impl FnMut(<S as UnificationStoreBase>::Key) -> <S as UnificationStoreBase>::Value
)
[src]
pub fn reset_unifications(
&mut self,
value: impl FnMut(<S as UnificationStoreBase>::Key) -> <S as UnificationStoreBase>::Value
)
[src]Clears all unifications that have been performed, resetting to the initial state. The values of each variable are given by the closure.
impl<S, K, V> UnificationTable<S> where
K: UnifyKey<Value = V>,
V: UnifyValue,
S: UnificationStoreMut<Key = K, Value = V>,
[src]
impl<S, K, V> UnificationTable<S> where
K: UnifyKey<Value = V>,
V: UnifyValue,
S: UnificationStoreMut<Key = K, Value = V>,
[src]//////////////////////////////////////////////////////////////////////// Public API
pub fn union<K1, K2>(&mut self, a_id: K1, b_id: K2) where
V: UnifyValue<Error = NoError>,
K1: Into<K>,
K2: Into<K>,
[src]
pub fn union<K1, K2>(&mut self, a_id: K1, b_id: K2) where
V: UnifyValue<Error = NoError>,
K1: Into<K>,
K2: Into<K>,
[src]Unions two keys without the possibility of failure; only
applicable when unify values use NoError
as their error
type.
pub fn union_value<K1>(&mut self, id: K1, value: V) where
V: UnifyValue<Error = NoError>,
K1: Into<K>,
[src]
pub fn union_value<K1>(&mut self, id: K1, value: V) where
V: UnifyValue<Error = NoError>,
K1: Into<K>,
[src]Unions a key and a value without the possibility of failure;
only applicable when unify values use NoError
as their error
type.
pub fn unioned<K1, K2>(&mut self, a_id: K1, b_id: K2) -> bool where
K1: Into<K>,
K2: Into<K>,
[src]
pub fn unioned<K1, K2>(&mut self, a_id: K1, b_id: K2) -> bool where
K1: Into<K>,
K2: Into<K>,
[src]Given two keys, indicates whether they have been unioned together.
pub fn find<K1>(&mut self, id: K1) -> K where
K1: Into<K>,
[src]
pub fn find<K1>(&mut self, id: K1) -> K where
K1: Into<K>,
[src]Given a key, returns the (current) root key.
pub fn unify_var_var<K1, K2>(
&mut self,
a_id: K1,
b_id: K2
) -> Result<(), <V as UnifyValue>::Error> where
K1: Into<K>,
K2: Into<K>,
[src]
pub fn unify_var_var<K1, K2>(
&mut self,
a_id: K1,
b_id: K2
) -> Result<(), <V as UnifyValue>::Error> where
K1: Into<K>,
K2: Into<K>,
[src]Unions together two variables, merging their values. If merging the values fails, the error is propagated and this method has no effect.
pub fn unify_var_value<K1>(
&mut self,
a_id: K1,
b: V
) -> Result<(), <V as UnifyValue>::Error> where
K1: Into<K>,
[src]
pub fn unify_var_value<K1>(
&mut self,
a_id: K1,
b: V
) -> Result<(), <V as UnifyValue>::Error> where
K1: Into<K>,
[src]Sets the value of the key a_id
to b
, attempting to merge
with the previous value.
pub fn probe_value<K1>(&mut self, id: K1) -> V where
K1: Into<K>,
[src]
pub fn probe_value<K1>(&mut self, id: K1) -> V where
K1: Into<K>,
[src]Returns the current value for the given key. If the key has been union’d, this will give the value from the current root.
pub fn inlined_probe_value<K1>(&mut self, id: K1) -> V where
K1: Into<K>,
[src]
K1: Into<K>,
Trait Implementations
impl<S> Clone for UnificationTable<S> where
S: Clone + UnificationStoreBase,
[src]
impl<S> Clone for UnificationTable<S> where
S: Clone + UnificationStoreBase,
[src]pub fn clone(&self) -> UnificationTable<S>
[src]
pub fn clone(&self) -> UnificationTable<S>
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl<S> Debug for UnificationTable<S> where
S: Debug + UnificationStoreBase,
[src]
impl<S> Debug for UnificationTable<S> where
S: Debug + UnificationStoreBase,
[src]impl<S> Default for UnificationTable<S> where
S: Default + UnificationStoreBase,
[src]
impl<S> Default for UnificationTable<S> where
S: Default + UnificationStoreBase,
[src]pub fn default() -> UnificationTable<S>
[src]
pub fn default() -> UnificationTable<S>
[src]Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<S> RefUnwindSafe for UnificationTable<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<S> Send for UnificationTable<S> where
S: Send,
S: Send,
impl<S> Sync for UnificationTable<S> where
S: Sync,
S: Sync,
impl<S> Unpin for UnificationTable<S> where
S: Unpin,
S: Unpin,
impl<S> UnwindSafe for UnificationTable<S> where
S: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,