pub struct SteppedRangeExpand<I: Int> { /* private fields */ }
Trait Implementations§
Source§impl<I: Int + Into<ExpandElement>> Iterable<I> for SteppedRangeExpand<I>
impl<I: Int + Into<ExpandElement>> Iterable<I> for SteppedRangeExpand<I>
Source§fn expand(
self,
scope: &mut Scope,
body: impl FnMut(&mut Scope, <I as CubeType>::ExpandType),
)
fn expand( self, scope: &mut Scope, body: impl FnMut(&mut Scope, <I as CubeType>::ExpandType), )
Expand a runtime loop without unrolling Read more
Source§fn expand_unroll(
self,
scope: &mut Scope,
body: impl FnMut(&mut Scope, <I as CubeType>::ExpandType),
)
fn expand_unroll( self, scope: &mut Scope, body: impl FnMut(&mut 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> 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