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
This code Stream.iterate(0, i -> i+1).filter(i -> i == 0).findFirst() Will loop forever instead of returning the first element
Stream.iterate(0, i -> i+1).filter(i -> i == 0).findFirst()
The text was updated successfully, but these errors were encountered:
528d932
@optisamit thanks for pointing that out.
Sorry, something went wrong.
@aNNiMON Thank you! In what version will the fix be included?
@optisamit I'll publish 1.1.1 version this week.
aNNiMON
No branches or pull requests
This code
Stream.iterate(0, i -> i+1).filter(i -> i == 0).findFirst()
Will loop forever instead of returning the first element
The text was updated successfully, but these errors were encountered: