We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10d1d3 commit bd84defCopy full SHA for bd84def
src/unify/mod.rs
@@ -184,7 +184,8 @@ pub struct UnificationTable<S> {
184
values: S,
185
}
186
187
-pub type UnificationTableStorage<K> = UnificationTable<InPlace<K, Vec<VarValue<K>>, ()>>;
+pub type UnificationStorage<K> = Vec<VarValue<K>>;
188
+pub type UnificationTableStorage<K> = UnificationTable<InPlace<K, UnificationStorage<K>, ()>>;
189
190
/// A unification table that uses an "in-place" vector.
191
#[allow(type_alias_bounds)]
0 commit comments