pub type Goals = Goals<Interner>;
Aliased Type§
struct Goals { /* private fields */ }
Implementations
§impl<I> Goals<I>where
I: Interner,
impl<I> Goals<I>where
I: Interner,
pub fn debug(&self, interner: I) -> GoalsDebug<'_, I>
pub fn debug(&self, interner: I) -> GoalsDebug<'_, I>
Show debug output for Goals
.
§impl<I> Goals<I>where
I: Interner,
impl<I> Goals<I>where
I: Interner,
pub fn from_fallible<E>(
interner: I,
elements: impl IntoIterator<Item = Result<impl CastTo<Goal<I>>, E>>,
) -> Result<Goals<I>, E>
pub fn from_fallible<E>( interner: I, elements: impl IntoIterator<Item = Result<impl CastTo<Goal<I>>, E>>, ) -> Result<Goals<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<Goal<I>>>,
) -> Goals<I>
pub fn from_iter( interner: I, elements: impl IntoIterator<Item = impl CastTo<Goal<I>>>, ) -> Goals<I>
Create a sequence from elements
pub fn from1(interner: I, element: impl CastTo<Goal<I>>) -> Goals<I>
pub fn from1(interner: I, element: impl CastTo<Goal<I>>) -> Goals<I>
Create a sequence from a single element.
§impl<I> Goals<I>where
I: Interner,
impl<I> Goals<I>where
I: Interner,
pub fn interned(&self) -> &<I as Interner>::InternedGoals
pub fn interned(&self) -> &<I as Interner>::InternedGoals
Get the interned elements.
pub fn as_slice(&self, interner: I) -> &[Goal<I>]
pub fn as_slice(&self, interner: I) -> &[Goal<I>]
Returns a slice containing the elements.
pub fn empty(interner: I) -> Goals<I>
pub fn empty(interner: I) -> Goals<I>
Create an empty sequence.
Trait Implementations
§impl<I> HasInterner for Goals<I>where
I: Interner,
impl<I> HasInterner for Goals<I>where
I: Interner,
§impl<I> Ord for Goals<I>
impl<I> Ord for Goals<I>
§impl<I> PartialOrd for Goals<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedGoals: PartialOrd,
impl<I> PartialOrd for Goals<I>where
I: PartialOrd + Interner,
<I as Interner>::InternedGoals: PartialOrd,
§impl<I> TypeFoldable<I> for Goals<I>where
I: Interner,
impl<I> TypeFoldable<I> for Goals<I>where
I: Interner,
§fn try_fold_with<E>(
self,
folder: &mut dyn FallibleTypeFolder<I, Error = E>,
outer_binder: DebruijnIndex,
) -> Result<Goals<I>, E>
fn try_fold_with<E>( self, folder: &mut dyn FallibleTypeFolder<I, Error = E>, outer_binder: DebruijnIndex, ) -> Result<Goals<I>, E>
Apply the given folder
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
A convenient alternative to
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 Goals<I>where
I: Interner,
impl<I> TypeVisitable<I> for Goals<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>
Apply the given visitor
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.