Skip to content

Commit

Permalink
Relax IntoParallelIterator for &'a mut IndexMap
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Jul 24, 2020
1 parent 0d6a5a4 commit c65445a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/rayon/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ impl<'a, K, V, S> IntoParallelIterator for &'a mut IndexMap<K, V, S>
where
K: Sync + Send,
V: Send,
S: BuildHasher,
{
type Item = (&'a K, &'a mut V);
type Iter = ParIterMut<'a, K, V>;
Expand Down

0 comments on commit c65445a

Please sign in to comment.