2019-01-13 12:40:14 -06:00
|
|
|
// run-rustfix
|
|
|
|
#![allow(dead_code, unused_must_use)]
|
2017-10-09 22:45:03 -05:00
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#[allow(clippy::unnecessary_operation)]
|
2017-10-09 22:45:03 -05:00
|
|
|
fn starts_with() {
|
|
|
|
"".chars().next() == Some(' ');
|
|
|
|
Some(' ') != "".chars().next();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn chars_cmp_with_unwrap() {
|
|
|
|
let s = String::from("foo");
|
2018-12-09 16:26:16 -06:00
|
|
|
if s.chars().next().unwrap() == 'f' {
|
|
|
|
// s.starts_with('f')
|
2017-10-09 22:45:03 -05:00
|
|
|
// Nothing here
|
|
|
|
}
|
2018-12-09 16:26:16 -06:00
|
|
|
if s.chars().next_back().unwrap() == 'o' {
|
|
|
|
// s.ends_with('o')
|
2017-10-09 22:45:03 -05:00
|
|
|
// Nothing here
|
|
|
|
}
|
2018-12-09 16:26:16 -06:00
|
|
|
if s.chars().last().unwrap() == 'o' {
|
|
|
|
// s.ends_with('o')
|
2017-10-09 22:45:03 -05:00
|
|
|
// Nothing here
|
|
|
|
}
|
2018-12-09 16:26:16 -06:00
|
|
|
if s.chars().next().unwrap() != 'f' {
|
|
|
|
// !s.starts_with('f')
|
2017-10-09 22:45:03 -05:00
|
|
|
// Nothing here
|
|
|
|
}
|
2018-12-09 16:26:16 -06:00
|
|
|
if s.chars().next_back().unwrap() != 'o' {
|
|
|
|
// !s.ends_with('o')
|
2017-10-09 22:45:03 -05:00
|
|
|
// Nothing here
|
|
|
|
}
|
2018-12-09 16:26:16 -06:00
|
|
|
if s.chars().last().unwrap() != 'o' {
|
|
|
|
// !s.ends_with('o')
|
2017-10-09 22:45:03 -05:00
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#[allow(clippy::unnecessary_operation)]
|
2017-10-09 22:45:03 -05:00
|
|
|
fn ends_with() {
|
|
|
|
"".chars().last() == Some(' ');
|
|
|
|
Some(' ') != "".chars().last();
|
|
|
|
"".chars().next_back() == Some(' ');
|
|
|
|
Some(' ') != "".chars().next_back();
|
|
|
|
}
|