We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 264f811 commit 27f384dCopy full SHA for 27f384d
src/rayon/set.rs
@@ -497,7 +497,7 @@ where
497
}
498
499
/// Requires crate feature `"rayon"`.
500
-impl<T, S> ParallelExtend<(T)> for IndexSet<T, S>
+impl<T, S> ParallelExtend<T> for IndexSet<T, S>
501
where
502
T: Eq + Hash + Send,
503
S: BuildHasher + Send,
src/set.rs
@@ -328,7 +328,7 @@ where
328
329
330
/// Return item index
331
- pub fn entry_index<Q: ?Sized>(&self, value: &Q) -> Option<(usize)>
+ pub fn entry_index<Q: ?Sized>(&self, value: &Q) -> Option<usize>
332
333
Q: Hash + Equivalent<T>,
334
{
0 commit comments