Finish the HashMapLint
This commit is contained in:
parent
54b70ed8e1
commit
d0bb71e6a2
2 changed files with 23 additions and 15 deletions
|
|
@ -15,11 +15,9 @@ fn insert_if_absent2<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, v: V) {
|
|||
if !m.contains_key(&k) { m.insert(k, v) } else { None }; //~ERROR: usage of `contains_key` followed by `insert` on `HashMap`
|
||||
}
|
||||
|
||||
/* TODO
|
||||
fn insert_other_if_absent<K: Eq + Hash, V>(m: &mut HashMap<K, V>, k: K, o: K, v: V) {
|
||||
if !m.contains_key(&k) { m.insert(o, v) } else { None };
|
||||
if !m.contains_key(&k) { m.insert(o, v); }
|
||||
}
|
||||
*/
|
||||
|
||||
fn main() {
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue