// with_step returns copy of the range with new step value.
pubfn(rRange[T])with_step[T](stepT)Range[T]{
returnRange[T]{
start:r.start
end:r.end
...r
step:step
is_neg:r.is_neg
cur:r.start
}
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.