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
manual_slice_fill
Suggests using slice::fill instead of a manual loop
slice::fill
needless_range_loop
Uses a less known function (slice::fill)
for i in 0..some_slice.len() { some_slice[i] = 0; }
Could be written as:
some_slice.fill(0);
The text was updated successfully, but these errors were encountered:
@rustbot claim
Sorry, something went wrong.
sivchari
No branches or pull requests
What it does
Suggests using
slice::fill
instead of a manual loopAdvantage
needless_range_loop
Drawbacks
Uses a less known function (
slice::fill
)Example
Could be written as:
The text was updated successfully, but these errors were encountered: