-
Hello everyone,
First of all, thank you all for this incredible project and all your efforts !
I have a question about the use of the HashMap behind the Mutex.
Could this be replaced by some co…
-
`StorageMap` but on the heap.
It would be useful to have the ability to store / fetch `key`, `value` pairs that only exist for the duration of a function call, making it cheaper to use than touchin…
-
Already the implementation is nice but can be improved by using hashmap where keys are starting braces and values are closing braces then we don't have to hardcode braces through out the solution, wil…
-
Added in #54043.
----
As of 6ecad338381cc3b8d56e2df22e5971a598eddd6c / 2019-01-09, this feature covers:
```rust
impl HashMap
where K: Eq + Hash,
S: BuildHasher
{
pub fn…
-
**TL;DR**
This issue suggests the crate providing a new `hashmap_ex!` macro which allows user to specify the `HashMap` type.
```rust
let map = hashmap_ex!(
HashMap,
{
"One", 1,
…
-
once a value is inserted into the map, all wakers waiting on that value are awoken. If there is more than one waker, this could put contention on that shard of the map, because the implementation of w…
-
Hi Idris/Sathish
How your wordCount HashMap in the sample code is going to be behave in clustered environment?
Br
Harvinder
-
https://ssp0xd7.github.io/2017/12/09/HashMap/
-
Hola, tengo una cosulta sobre el ejercicio 8 del TP6. Yo hice la implementacion de Bag haciendo que la clase BagImpl extienda a HashMap, pero vi que en las soluciones en vez de usar herencia tiene el …
-
### Reproducible example
```rs
use std::collections::HashMap;
use serde::{Serialize, Deserialize, Serializer, Deserializer};
use flexbuffers::{self, FlexbufferSerializer, Reader};
#[derive(Debug, P…