2018-10-06 16:18:06 +00: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-10-11 10:16:22 +00:00
|
|
|
|
2017-09-18 10:47:33 +00:00
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![allow(unused, clippy::needless_pass_by_value)]
|
2017-09-18 10:47:33 +00:00
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::map_entry)]
|
2015-12-21 23:35:56 +00:00
|
|
|
|
2016-01-12 19:23:28 +00:00
|
|
|
use std::collections::{BTreeMap, HashMap};
|
2015-12-21 23:35:56 +00:00
|
|
|
use std::hash::Hash;
|
|
|
|
|
2016-01-03 16:19:49 +00:00
|
|
|
fn foo() {}
|
|
|
|
|
|
|
|
fn insert_if_absent0<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
|
|
|
|
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) {
|
|
|
|
if !m.contains_key(&k) { foo(); m.insert(k, v); }
|
2015-12-21 23:35:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn insert_if_absent2<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
|
2016-01-03 16:19:49 +00:00
|
|
|
if !m.contains_key(&k) { m.insert(k, v) } else { None };
|
2016-02-18 19:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn insert_if_present2<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
|
|
|
|
if m.contains_key(&k) { None } else { m.insert(k, v) };
|
2016-01-03 16:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn insert_if_absent3<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
|
|
|
|
if !m.contains_key(&k) { foo(); m.insert(k, v) } else { None };
|
2016-02-18 19:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn insert_if_present3<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
|
|
|
|
if m.contains_key(&k) { None } else { foo(); m.insert(k, v) };
|
2015-12-21 23:35:56 +00:00
|
|
|
}
|
|
|
|
|
2016-01-12 19:23:28 +00:00
|
|
|
fn insert_in_btreemap<K: Ord, V>(m: &mut BTreeMap<K, V>, k: K, v: V) {
|
|
|
|
if !m.contains_key(&k) { foo(); m.insert(k, v) } else { None };
|
|
|
|
}
|
|
|
|
|
2015-12-21 23:35:56 +00:00
|
|
|
fn insert_other_if_absent<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, o: K, v: V) {
|
2016-01-03 15:31:28 +00:00
|
|
|
if !m.contains_key(&k) { m.insert(o, v); }
|
2015-12-21 23:35:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|