rust/tests/ui/entry.rs

81 lines
1.8 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.
2018-07-28 10:34:52 -05:00
#![allow(unused, clippy::needless_pass_by_value)]
#![warn(clippy::map_entry)]
2015-12-21 17:35:56 -06:00
use std::collections::{BTreeMap, HashMap};
2015-12-21 17:35:56 -06:00
use std::hash::Hash;
fn foo() {}
fn insert_if_absent0<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
2018-12-09 16:26:16 -06:00
if !m.contains_key(&k) {
m.insert(k, v);
}
}
fn insert_if_absent1<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
2018-12-09 16:26:16 -06:00
if !m.contains_key(&k) {
foo();
m.insert(k, v);
}
2015-12-21 17:35:56 -06:00
}
fn insert_if_absent2<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
2018-12-09 16:26:16 -06:00
if !m.contains_key(&k) {
m.insert(k, v)
} else {
None
};
}
fn insert_if_present2<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
2018-12-09 16:26:16 -06:00
if m.contains_key(&k) {
None
} else {
m.insert(k, v)
};
}
fn insert_if_absent3<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
2018-12-09 16:26:16 -06:00
if !m.contains_key(&k) {
foo();
m.insert(k, v)
} else {
None
};
}
fn insert_if_present3<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
2018-12-09 16:26:16 -06:00
if m.contains_key(&k) {
None
} else {
foo();
m.insert(k, v)
};
2015-12-21 17:35:56 -06:00
}
fn insert_in_btreemap<K: Ord, V>(m: &mut BTreeMap<K, V>, k: K, v: V) {
2018-12-09 16:26:16 -06:00
if !m.contains_key(&k) {
foo();
m.insert(k, v)
} else {
None
};
}
2015-12-21 17:35:56 -06:00
fn insert_other_if_absent<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, o: K, v: V) {
2018-12-09 16:26:16 -06:00
if !m.contains_key(&k) {
m.insert(o, v);
}
2015-12-21 17:35:56 -06:00
}
2018-12-09 16:26:16 -06:00
fn main() {}