2017-02-07 14:05:30 -06:00
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/entry.rs:19:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / if !m.contains_key(&k) {
|
|
|
|
LL | | m.insert(k, v);
|
|
|
|
LL | | }
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^ help: consider using: `m.entry(k).or_insert(v)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::map-entry` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/entry.rs:25:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / if !m.contains_key(&k) {
|
|
|
|
LL | | foo();
|
|
|
|
LL | | m.insert(k, v);
|
|
|
|
LL | | }
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^ help: consider using: `m.entry(k)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/entry.rs:32:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / if !m.contains_key(&k) {
|
|
|
|
LL | | m.insert(k, v)
|
|
|
|
LL | | } else {
|
|
|
|
LL | | None
|
|
|
|
LL | | };
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^ help: consider using: `m.entry(k)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/entry.rs:40:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / if m.contains_key(&k) {
|
|
|
|
LL | | None
|
|
|
|
LL | | } else {
|
|
|
|
LL | | m.insert(k, v)
|
|
|
|
LL | | };
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^ help: consider using: `m.entry(k)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/entry.rs:48:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / if !m.contains_key(&k) {
|
|
|
|
LL | | foo();
|
|
|
|
LL | | m.insert(k, v)
|
|
|
|
LL | | } else {
|
|
|
|
LL | | None
|
|
|
|
LL | | };
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^ help: consider using: `m.entry(k)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `HashMap`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/entry.rs:57:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / if m.contains_key(&k) {
|
|
|
|
LL | | None
|
|
|
|
LL | | } else {
|
|
|
|
LL | | foo();
|
|
|
|
LL | | m.insert(k, v)
|
|
|
|
LL | | };
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^ help: consider using: `m.entry(k)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: usage of `contains_key` followed by `insert` on a `BTreeMap`
|
2018-12-09 23:27:19 -06:00
|
|
|
--> $DIR/entry.rs:66:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / if !m.contains_key(&k) {
|
|
|
|
LL | | foo();
|
|
|
|
LL | | m.insert(k, v)
|
|
|
|
LL | | } else {
|
|
|
|
LL | | None
|
|
|
|
LL | | };
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^ help: consider using: `m.entry(k)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|