rust/tests/ui/starts_ends_with.rs

55 lines
1.5 KiB
Rust
Raw Normal View History

2018-10-06 11:18:06 -05:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2017-10-09 22:45:03 -05:00
#![allow(dead_code)]
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();
}