]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/methods/chars_next_cmp_with_unwrap.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / src / tools / clippy / clippy_lints / src / methods / chars_next_cmp_with_unwrap.rs
1 use rustc_lint::LateContext;
2
3 use super::CHARS_NEXT_CMP;
4
5 /// Checks for the `CHARS_NEXT_CMP` lint with `unwrap()`.
6 pub(super) fn check(cx: &LateContext<'_>, info: &crate::methods::BinaryExprInfo<'_>) -> bool {
7     crate::methods::chars_cmp_with_unwrap::check(cx, info, &["chars", "next", "unwrap"], CHARS_NEXT_CMP, "starts_with")
8 }