pub type Substitution = Substitution<Interner>;
Expand description
Interned list of generic arguments for an item. When an item has parent, the Substitution
for
it contains generic arguments for both its parent and itself. See chalk’s documentation for
details.
See Binders
for the constraint on the ordering.
Aliased Type§
struct Substitution { /* private fields */ }
Implementations
§impl<I> Substitution<I>where
I: Interner,
impl<I> Substitution<I>where
I: Interner,
pub fn debug(&self, interner: I) -> SubstitutionDebug<'_, I>
pub fn debug(&self, interner: I) -> SubstitutionDebug<'_, I>
Show debug output for the substitution.
§impl<I> Substitution<I>where
I: Interner,
impl<I> Substitution<I>where
I: Interner,
pub fn from_fallible<E>(
interner: I,
elements: impl IntoIterator<Item = Result<impl CastTo<GenericArg<I>>, E>>,
) -> Result<Substitution<I>, E>
pub fn from_fallible<E>( interner: I, elements: impl IntoIterator<Item = Result<impl CastTo<GenericArg<I>>, E>>, ) -> Result<Substitution<I>, E>
Tries to create a sequence using an iterator of element-like things.
pub fn from_iter(
interner: I,
elements: impl IntoIterator<Item = impl CastTo<GenericArg<I>>>,
) -> Substitution<I>
pub fn from_iter( interner: I, elements: impl IntoIterator<Item = impl CastTo<GenericArg<I>>>, ) -> Substitution<I>
Create a sequence from elements
pub fn from1(
interner: I,
element: impl CastTo<GenericArg<I>>,
) -> Substitution<I>
pub fn from1( interner: I, element: impl CastTo<GenericArg<I>>, ) -> Substitution<I>
Create a sequence from a single element.
§impl<I> Substitution<I>where
I: Interner,
impl<I> Substitution<I>where
I: Interner,
pub fn interned(&self) -> &<I as Interner>::InternedSubstitution
pub fn interned(&self) -> &<I as Interner>::InternedSubstitution
Get the interned elements.
pub fn as_slice(&self, interner: I) -> &[GenericArg<I>]
pub fn as_slice(&self, interner: I) -> &[GenericArg<I>]
Returns a slice containing the elements.
pub fn empty(interner: I) -> Substitution<I>
pub fn empty(interner: I) -> Substitution<I>
Create an empty sequence.
§impl<I> Substitution<I>where
I: Interner,
impl<I> Substitution<I>where
I: Interner,
pub fn is_identity_subst(&self, interner: I) -> bool
pub fn is_identity_subst(&self, interner: I) -> bool
A substitution is an identity substitution if it looks like this
?0 := ?0
?1 := ?1
?2 := ?2
...
Basically, each value is mapped to a type or lifetime with its same index.
pub fn apply<T>(&self, value: T, interner: I) -> Twhere
T: TypeFoldable<I>,
pub fn apply<T>(&self, value: T, interner: I) -> Twhere
T: TypeFoldable<I>,
Apply the substitution to a value.
pub fn type_parameters(&self, interner: I) -> impl Iterator<Item = Ty<I>>
pub fn type_parameters(&self, interner: I) -> impl Iterator<Item = Ty<I>>
Gets an iterator of all type parameters.
§impl<I> Substitution<I>where
I: Interner,
impl<I> Substitution<I>where
I: Interner,
pub fn with_angle(&self, interner: I) -> Angle<'_, GenericArg<I>>
pub fn with_angle(&self, interner: I) -> Angle<'_, GenericArg<I>>
Displays the substitution in the form < P0, .. Pn >
, or (if
the substitution is empty) as an empty string.
Trait Implementations
§impl<I> AsParameters<I> for Substitution<I>where
I: Interner,
impl<I> AsParameters<I> for Substitution<I>where
I: Interner,
§fn as_parameters(&self, interner: I) -> &[GenericArg<I>]
fn as_parameters(&self, interner: I) -> &[GenericArg<I>]
§impl<I> HasInterner for Substitution<I>where
I: Interner,
impl<I> HasInterner for Substitution<I>where
I: Interner,
§impl<I> Ord for Substitution<I>
impl<I> Ord for Substitution<I>
§impl<I> PartialOrd for Substitution<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedSubstitution: PartialOrd,
impl<I> PartialOrd for Substitution<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedSubstitution: PartialOrd,
§impl<I> TypeFoldable<I> for Substitution<I>where
I: Interner,
impl<I> TypeFoldable<I> for Substitution<I>where
I: Interner,
§fn try_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<Substitution<I>, E>
fn try_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<Substitution<I>, E>
folder
to self
; binders
is the
number of binders that are in scope when beginning the
folder. Typically binders
starts as 0, but is adjusted when
we encounter Binders<T>
in the IR or other similar
constructs.§fn fold_with(
self,
folder: &mut dyn TypeFolder<I, Error = Infallible>,
outer_binder: DebruijnIndex,
) -> Self
fn fold_with( self, folder: &mut dyn TypeFolder<I, Error = Infallible>, outer_binder: DebruijnIndex, ) -> Self
try_fold_with
for use with infallible
folders. Do not override this method, to ensure coherence with
try_fold_with
.§impl<I> TypeVisitable<I> for Substitution<I>where
I: Interner,
impl<I> TypeVisitable<I> for Substitution<I>where
I: Interner,
§fn visit_with<B>(
&self,
visitor: &mut dyn TypeVisitor<I, BreakTy = B>,
outer_binder: DebruijnIndex,
) -> ControlFlow<B>
fn visit_with<B>( &self, visitor: &mut dyn TypeVisitor<I, BreakTy = B>, outer_binder: DebruijnIndex, ) -> ControlFlow<B>
visitor
to self
; binders
is the
number of binders that are in scope when beginning the
visitor. Typically binders
starts as 0, but is adjusted when
we encounter Binders<T>
in the IR or other similar
constructs.