pub struct SteppedRangeExpand<I: Int> { /* private fields */ }Trait Implementations§
Source§impl<I: Int + Into<Value>> Iterable for SteppedRangeExpand<I>
impl<I: Int + Into<Value>> Iterable for SteppedRangeExpand<I>
type Item = NativeExpand<I>
Source§fn expand(
self,
scope: &Scope,
body: impl FnMut(&Scope, <I as CubeType>::ExpandType),
)
fn expand( self, scope: &Scope, body: impl FnMut(&Scope, <I as CubeType>::ExpandType), )
Expand a runtime loop without unrolling Read more
Source§fn expand_unroll(
self,
scope: &Scope,
body: impl FnMut(&Scope, <I as CubeType>::ExpandType),
)
fn expand_unroll( self, scope: &Scope, body: impl FnMut(&Scope, <I as CubeType>::ExpandType), )
Expand an unrolled loop. The body should be invoced
n times, where n is the number of
iterations. Read moreAuto Trait Implementations§
impl<I> Freeze for SteppedRangeExpand<I>
impl<I> RefUnwindSafe for SteppedRangeExpand<I>where
I: RefUnwindSafe,
impl<I> Send for SteppedRangeExpand<I>
impl<I> Sync for SteppedRangeExpand<I>
impl<I> Unpin for SteppedRangeExpand<I>where
I: Unpin,
impl<I> UnsafeUnpin for SteppedRangeExpand<I>
impl<I> UnwindSafe for SteppedRangeExpand<I>where
I: UnwindSafe,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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