Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes #22844; uses arrays to store holeyenums for iterations; much more efficient than sets and reasonable for holeyenums #22845

Merged
merged 7 commits into from
Oct 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/system/iterators.nim
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ iterator items*[T](a: set[T]): T {.inline.} =
## able to hold).
var i = low(T).int
while i <= high(T).int:
if T(i) in a: yield T(i)
when not defined(nimHasCastExtendedVm):
ringabout marked this conversation as resolved.
Show resolved Hide resolved
if cast[T](i) in a: yield cast[T](i)
else:
if T(i) in a: yield T(i)
unCheckedInc(i)

iterator items*(a: cstring): char {.inline.} =
Expand Down
Loading