Function cubecl_core::frontend::branch::range
source · pub fn range<S, E>(
start: S,
end: E,
_unroll: Comptime<bool>,
) -> impl Iterator<Item = UInt>
Expand description
UInt range. Equivalent to:
ⓘ
for i in start..end { ... }