2017-10-08 14:37:04 -05:00
|
|
|
error: the loop variable `i` is only used to index `ns`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:15:14
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in 3..10 {
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-range-loop` implied by `-D warnings`
|
2017-10-08 14:37:04 -05:00
|
|
|
help: consider using an iterator
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in ns.iter().take(10).skip(3) {
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-08 14:37:04 -05:00
|
|
|
|
2017-11-07 07:41:54 -06:00
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:36:14
|
2017-11-07 07:41:54 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in 0..ms.len() {
|
2018-01-28 22:18:11 -06:00
|
|
|
| ^^^^^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in &mut ms {
|
2018-05-29 03:56:58 -05:00
|
|
|
| ^^^^^^ ^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `ms`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:42:14
|
2017-11-07 07:41:54 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in 0..ms.len() {
|
2018-01-28 22:18:11 -06:00
|
|
|
| ^^^^^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in &mut ms {
|
2018-05-29 03:56:58 -05:00
|
|
|
| ^^^^^^ ^^^^^^^
|
2017-11-07 07:41:54 -06:00
|
|
|
|
2018-10-14 22:07:21 -05:00
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:66:14
|
2018-10-14 22:07:21 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in x..x + 4 {
|
2018-10-14 22:07:21 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in vec.iter_mut().skip(x).take(4) {
|
2018-10-14 22:07:21 -05:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:73:14
|
2018-10-14 22:07:21 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in x..=x + 4 {
|
2018-10-14 22:07:21 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in vec.iter_mut().skip(x).take(4 + 1) {
|
2018-10-14 22:07:21 -05:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-10-19 15:34:16 -05:00
|
|
|
error: the loop variable `i` is only used to index `arr`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:79:14
|
2018-10-19 15:34:16 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in 0..3 {
|
2018-10-19 15:34:16 -05:00
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in &arr {
|
2018-10-19 15:34:16 -05:00
|
|
|
| ^^^^^^ ^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `arr`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:83:14
|
2018-10-19 15:34:16 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in 0..2 {
|
2018-10-19 15:34:16 -05:00
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in arr.iter().take(2) {
|
2018-10-19 15:34:16 -05:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `arr`.
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:87:14
|
2018-10-19 15:34:16 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for i in 1..3 {
|
2018-10-19 15:34:16 -05:00
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | for <item> in arr.iter().skip(1) {
|
2018-10-19 15:34:16 -05:00
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2019-04-24 01:01:16 -05:00
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:93:14
|
|
|
|
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in &vec {
|
|
|
|
| ^^^^^^ ^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:102:14
|
|
|
|
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in &vec {
|
|
|
|
| ^^^^^^ ^^^^
|
|
|
|
|
|
|
|
error: the loop variable `j` is only used to index `STATIC`.
|
|
|
|
--> $DIR/needless_range_loop.rs:107:14
|
|
|
|
|
|
|
|
|
LL | for j in 0..4 {
|
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in &STATIC {
|
|
|
|
| ^^^^^^ ^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `j` is only used to index `CONST`.
|
|
|
|
--> $DIR/needless_range_loop.rs:111:14
|
|
|
|
|
|
|
|
|
LL | for j in 0..4 {
|
|
|
|
| ^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in &CONST {
|
|
|
|
| ^^^^^^ ^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is used to index `vec`
|
|
|
|
--> $DIR/needless_range_loop.rs:115:14
|
|
|
|
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for (i, <item>) in vec.iter().enumerate() {
|
|
|
|
| ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec2`.
|
|
|
|
--> $DIR/needless_range_loop.rs:123:14
|
|
|
|
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in vec2.iter().take(vec.len()) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:127:14
|
|
|
|
|
|
|
|
|
LL | for i in 5..vec.len() {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in vec.iter().skip(5) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:131:14
|
|
|
|
|
|
|
|
|
LL | for i in 0..MAX_LEN {
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in vec.iter().take(MAX_LEN) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:135:14
|
|
|
|
|
|
|
|
|
LL | for i in 0..=MAX_LEN {
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in vec.iter().take(MAX_LEN + 1) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:139:14
|
|
|
|
|
|
|
|
|
LL | for i in 5..10 {
|
|
|
|
| ^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in vec.iter().take(10).skip(5) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is only used to index `vec`.
|
|
|
|
--> $DIR/needless_range_loop.rs:143:14
|
|
|
|
|
|
|
|
|
LL | for i in 5..=10 {
|
|
|
|
| ^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for <item> in vec.iter().take(10 + 1).skip(5) {
|
|
|
|
| ^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is used to index `vec`
|
|
|
|
--> $DIR/needless_range_loop.rs:147:14
|
|
|
|
|
|
|
|
|
LL | for i in 5..vec.len() {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for (i, <item>) in vec.iter().enumerate().skip(5) {
|
|
|
|
| ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: the loop variable `i` is used to index `vec`
|
|
|
|
--> $DIR/needless_range_loop.rs:151:14
|
|
|
|
|
|
|
|
|
LL | for i in 5..10 {
|
|
|
|
| ^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for (i, <item>) in vec.iter().enumerate().take(10).skip(5) {
|
|
|
|
| ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2019-02-10 23:03:12 -06:00
|
|
|
error: the loop variable `i` is used to index `vec`
|
2019-04-24 01:01:16 -05:00
|
|
|
--> $DIR/needless_range_loop.rs:156:14
|
2019-02-10 23:03:12 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..vec.len() {
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
help: consider using an iterator
|
|
|
|
|
|
|
|
|
LL | for (i, <item>) in vec.iter_mut().enumerate() {
|
|
|
|
| ^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2019-04-24 01:01:16 -05:00
|
|
|
error: aborting due to 22 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|