Replies: 1 comment 1 reply
-
There is a working pattern for this. Rather than implementing struct Generator
{
int i;
int max;
}
fn int! Generator.next()
{
if (i < max) return i++;
return IteratorResult.NO_MORE_ELEMENT?;
}
fn void main()
{
Generator g = { .max = 100 };
while (try i = g.next())
{
io::printn(i);
}
} I found this pattern so powerful that I didn't extend |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description:
Currently, C3 lacks a convenient way to iterate through custom generator types that implement
next
andhas_next
methods. To address this, I propose adding a new keyword:fornext
, which would allow developers to iterate through these generators in a simple and intuitive manner.The
fornext
loop would automatically invoke thehas_next()
method to check if there are more items to iterate over. On each iteration, it would call thenext()
method to retrieve the next value, assigning it to the loop variable.Additionally, the fornext loop could optionally support an index variable, making it easier to track the position within the iteration.
Proposed Syntax:
Beta Was this translation helpful? Give feedback.
All reactions