V means value in Map.Entry<K, V>

This commit is contained in:
hoijui 2021-02-12 09:59:57 +01:00 committed by GitHub
parent 921df25b51
commit 01372865fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4090,7 +4090,7 @@ pub fn entry(&mut self, key: K) -> Entry<K, V> // 🚧
``` ```
[Here is the page for Entry](https://doc.rust-lang.org/std/collections/hash_map/enum.Entry.html). Here is a simple version of its code. `K` means key and `V` means variable. [Here is the page for Entry](https://doc.rust-lang.org/std/collections/hash_map/enum.Entry.html). Here is a simple version of its code. `K` means key and `V` means value.
```rust ```rust
// 🚧 // 🚧