2017-10-10 03:45:03 +00:00
|
|
|
error: you should use the `starts_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:7:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | "".chars().next() == Some(' ');
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".starts_with(' ')`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::chars-next-cmp` implied by `-D warnings`
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
|
|
error: you should use the `starts_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:8:5
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Some(' ') != "".chars().next();
|
2018-08-01 14:30:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".starts_with(' ')`
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
|
|
error: you should use the `starts_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:13:8
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if s.chars().next().unwrap() == 'f' {
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.starts_with('f')`
|
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:17:8
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if s.chars().next_back().unwrap() == 'o' {
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.ends_with('o')`
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::chars-last-cmp` implied by `-D warnings`
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:21:8
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if s.chars().last().unwrap() == 'o' {
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `s.ends_with('o')`
|
|
|
|
|
|
|
|
error: you should use the `starts_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:25:8
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if s.chars().next().unwrap() != 'f' {
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.starts_with('f')`
|
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:29:8
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if s.chars().next_back().unwrap() != 'o' {
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.ends_with('o')`
|
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:33:8
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if s.chars().last().unwrap() != 'o' {
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!s.ends_with('o')`
|
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:41:5
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | "".chars().last() == Some(' ');
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`
|
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:42:5
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Some(' ') != "".chars().last();
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`
|
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:43:5
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | "".chars().next_back() == Some(' ');
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `"".ends_with(' ')`
|
|
|
|
|
|
|
|
error: you should use the `ends_with` method
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/starts_ends_with.rs:44:5
|
2017-10-10 03:45:03 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Some(' ') != "".chars().next_back();
|
2017-10-10 03:45:03 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: like this: `!"".ends_with(' ')`
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 12 previous errors
|
|
|
|
|