indexmap icon indicating copy to clipboard operation
indexmap copied to clipboard

A hash table with consistent order and fast iteration; access items by key or sequence index

Results 35 indexmap issues
Sort by recently updated
recently updated
newest added

Hi, this is a weird issue that I stumbled upon that is roughly similar to #144 but I have some new information that may or may not be relevant. ```...

### Missing methods (stable): - [x] `with_hasher` #35 - [x] `hasher` #35 - [x] `shrink_to_fit` - [x] `is_empty` #22 - [x] `drain` #27 - [x] `values`, `values_mut` #17 ### New...

enhancement

See the list here: https://github.com/rust-lang/rust/issues/45273#issuecomment-336626535

help wanted
A-docs

There's no reason it shouldn't work with the stdlib hashset. Perhaps we can add a second method for this?

I was hacking on the compiler and I wrote: ```rust // We've rejected overlap in each product in the sum. // Now we must account for the possibility that or-pattern...

* Example: Hash table that is keyed by newtyped strings and lookup is **case-insensitive**. * Use case: Want to lookup using `&str`.

Hi. It seems that by upgrading the compiler edition to 2021 within a semver major version (v1.8 -> 1.9) you broke the build for folks using the package with a...

This change adds Natvis visualizations for some `indexmap` types to help improve the debugging experience on Windows. Natvis is a framework that can be used to specify how types should...

help wanted

Would it be possible to implement an efficient `drain_filter` method for the `IndexMap`s and `IndexSet`s that behaves like the one in [std](https://doc.rust-lang.org/std/collections/struct.HashMap.html#method.drain_filter)?

waiting-for-std