-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Description
Currently range_rev(hi, lo)
iterates [hi..lo)
, but it probably should iterate (hi..lo]
.
For example, consider iterating indexes of vector of length 10 from the end. Currently that is range_rev(10-1, -1)
, but since hi
and lo
should be the same type, this can't be uint
, and to be used as an index it needs to be cast. range_rev(10, 0)
would be better.
This is from the mailing list discussion.
Metadata
Metadata
Assignees
Labels
E-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.