struct LocalVarEnv {
local_var_gen: IndexGen<LocalVar>,
fvars: UnordMap<Name, LocalVar>,
layers: Vec<Vec<LocalVar>>,
}
Expand description
Environment used to map from rty::Var
to a fixpoint::LocalVar
.
Fields§
§local_var_gen: IndexGen<LocalVar>
§fvars: UnordMap<Name, LocalVar>
§layers: Vec<Vec<LocalVar>>
Layers of late bound variables
Implementations§
Source§impl LocalVarEnv
impl LocalVarEnv
fn new() -> Self
fn fresh_name(&mut self) -> LocalVar
fn insert_fvar_map(&mut self, name: Name) -> LocalVar
fn remove_fvar_map(&mut self, name: Name)
Sourcefn push_layer_with_fresh_names(&mut self, count: usize)
fn push_layer_with_fresh_names(&mut self, count: usize)
Push a layer of bound variables assigning a fresh fixpoint::LocalVar
to each one
fn pop_layer(&mut self) -> Vec<LocalVar>
fn get_fvar(&self, name: Name) -> Option<LocalVar>
fn get_late_bvar( &self, debruijn: DebruijnIndex, var: BoundVar, ) -> Option<LocalVar>
Auto Trait Implementations§
impl !Freeze for LocalVarEnv
impl RefUnwindSafe for LocalVarEnv
impl Send for LocalVarEnv
impl Sync for LocalVarEnv
impl Unpin for LocalVarEnv
impl UnwindSafe for LocalVarEnv
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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