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
Interval(0,1,1/3).asArray
crashes
forBy is called within asArray (from Interval:do)
forBy(0, 1, 0/3, {|i|i.postln});
outputs a endless stream of 0 and crashes
I would expect that forBy would count on the basis of floats as well but it seems that the fractional part of the float is cut.
forBy(0, 1, 1.6, {|i|i.postln});
counts by steps of 1
The text was updated successfully, but these errors were encountered:
Thanks for the report, I'm happy to say this was already fixed in 3.10 (#3804). Please check existing issues before opening new ones.
Sorry, something went wrong.
No branches or pull requests
Environment
Steps to reproduce (for bugs)
crashes
forBy is called within asArray (from Interval:do)
outputs a endless stream of 0 and crashes
I would expect that forBy would count on the basis of floats as well but it seems that the fractional part of the float is cut.
counts by steps of 1
The text was updated successfully, but these errors were encountered: