[−][src]Struct rustc_ap_rustc_data_structures::unify::UnificationTable
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<K> UnificationTable<InPlace<K, Vec<VarValue<K>>, ()>> where
K: UnifyKey,
[src]
K: UnifyKey,
pub fn with_log<L>(
&'a mut self,
undo_log: L
) -> UnificationTable<InPlace<K, &'a mut Vec<VarValue<K>>, L>> where
L: UndoLogs<UndoLog<Delegate<K>>>,
[src]
&'a mut self,
undo_log: L
) -> UnificationTable<InPlace<K, &'a mut Vec<VarValue<K>>, L>> where
L: UndoLogs<UndoLog<Delegate<K>>>,
Creates a UnificationTable
using an external undo_log
, allowing mutating methods to be
called if L
does not implement UndoLogs
impl<S> UnificationTable<S> where
S: UnificationStoreBase + Default,
[src]
S: UnificationStoreBase + Default,
pub fn new() -> UnificationTable<S>
[src]
impl<S> UnificationTable<S> where
S: UnificationStore,
[src]
S: UnificationStore,
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]
Reverses all changes since the last snapshot. Also removes any keys that have been created since then.
pub fn commit(&mut self, snapshot: Snapshot<S>)
[src]
Commits all changes since the last snapshot. Of course, they can still be undone if there is a snapshot further out.
pub fn vars_since_snapshot(
&self,
snapshot: &Snapshot<S>
) -> Range<<S as UnificationStoreBase>::Key>
[src]
&self,
snapshot: &Snapshot<S>
) -> Range<<S as UnificationStoreBase>::Key>
Returns the keys of all variables created since the snapshot
.
impl<S> UnificationTable<S> where
S: UnificationStoreBase,
[src]
S: UnificationStoreBase,
impl<S> UnificationTable<S> where
S: UnificationStoreMut,
[src]
S: UnificationStoreMut,
pub fn new_key(
&mut self,
value: <S as UnificationStoreBase>::Value
) -> <S as UnificationStoreBase>::Key
[src]
&mut self,
value: <S as UnificationStoreBase>::Value
) -> <S as UnificationStoreBase>::Key
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]
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]
&mut self,
value: impl FnMut(<S as UnificationStoreBase>::Key) -> <S as UnificationStoreBase>::Value
)
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>,
S: UnificationStoreMut<Key = K, Value = V>,
V: UnifyValue,
[src]
K: UnifyKey<Value = V>,
S: UnificationStoreMut<Key = K, Value = V>,
V: UnifyValue,
//////////////////////////////////////////////////////////////////////// Public API
pub fn union<K1, K2>(&mut self, a_id: K1, b_id: K2) where
K1: Into<K>,
K2: Into<K>,
V: UnifyValue<Error = NoError>,
[src]
K1: Into<K>,
K2: Into<K>,
V: UnifyValue<Error = NoError>,
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
K1: Into<K>,
V: UnifyValue<Error = NoError>,
[src]
K1: Into<K>,
V: UnifyValue<Error = NoError>,
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]
K1: Into<K>,
K2: Into<K>,
Given two keys, indicates whether they have been unioned together.
pub fn find<K1>(&mut self, id: K1) -> K where
K1: Into<K>,
[src]
K1: Into<K>,
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]
&mut self,
a_id: K1,
b_id: K2
) -> Result<(), <V as UnifyValue>::Error> where
K1: Into<K>,
K2: Into<K>,
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]
&mut self,
a_id: K1,
b: V
) -> Result<(), <V as UnifyValue>::Error> where
K1: Into<K>,
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]
K1: Into<K>,
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: UnificationStoreBase + Clone,
[src]
S: UnificationStoreBase + Clone,
fn clone(&self) -> UnificationTable<S>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<S> Debug for UnificationTable<S> where
S: UnificationStoreBase + Debug,
[src]
S: UnificationStoreBase + Debug,
impl<S> Default for UnificationTable<S> where
S: UnificationStoreBase + Default,
[src]
S: UnificationStoreBase + Default,
fn default() -> UnificationTable<S>
[src]
impl<K> Rollback<UndoLog<Delegate<K>>> for UnificationTable<InPlace<K, Vec<VarValue<K>>, ()>> where
K: UnifyKey,
[src]
K: UnifyKey,
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Erased for T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<E> SpecializationError for E
[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
[src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,