We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example, one instance can get at most 1 value in a row, then another must do it. Until it is done, the instance cannot get any value.
genA.next(); // 1 genB.next(); // 2 genB.next(); // 2 or Error genA.next(); // 3 genA.next(); // 3 or Error genB.next(); // 4
Of curse, it must not be the default behavior. Rather than that, it should be achieved by something like an operator:
genA.group(genB, 'switch') ; // group, cluster, merge, join or like that
The text was updated successfully, but these errors were encountered:
damianc
No branches or pull requests
For example, one instance can get at most 1 value in a row, then another must do it. Until it is done, the instance cannot get any value.
Of curse, it must not be the default behavior. Rather than that, it should be achieved by something like an operator:
The text was updated successfully, but these errors were encountered: