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
What is the interpretation of the following two executions?
julia> findfirst(==(-7), 1:-1:-10) julia> findfirst(==(-7), collect(1:-1:-10)) 9
The text was updated successfully, but these errors were encountered:
This is wrong too:
julia> findfirst(==(2),1:-1:2) 0
Sorry, something went wrong.
Fix findfirst with decreasing step range (#33809)
8333297
Fixes #33808
78b7402
Fixes #33808 (cherry picked from commit 8333297)
0662e9c
Successfully merging a pull request may close this issue.
What is the interpretation of the following two executions?
The text was updated successfully, but these errors were encountered: