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

Payload capture with while loop #235

Open
nemelu opened this issue May 6, 2024 · 0 comments
Open

Payload capture with while loop #235

nemelu opened this issue May 6, 2024 · 0 comments

Comments

@nemelu
Copy link

nemelu commented May 6, 2024

This example is a little bit confusing because the while condition is redundant:

test "while optional" {
    var i: ?u32 = 10;
    while (i) |num| : (i.? -= 1) {
        try expect(@TypeOf(num) == u32);
        if (num == 1) {
            i = null;
            break;
        }
    }
    try expect(i == null);
}

I think it would be better like this:

test "while optional" {
    var i: ?u32 = 10;
    while (i) |num| {
        try expect(@TypeOf(num) == u32);
        i.? -= 1;
        if (num == 1) {
            i = null;
        }
    }
    try expect(i == null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant