File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,11 @@ pub mod raw {
48
48
pub use inner:: * ;
49
49
50
50
#[ cfg( feature = "rayon" ) ]
51
+ /// [rayon]-based parallel iterator types for hash maps.
52
+ /// You will rarely need to interact with it directly unless you have need
53
+ /// to name one of the iterator types.
54
+ ///
55
+ /// [rayon]: https://docs.rs/rayon/1.0/rayon
51
56
pub mod rayon {
52
57
pub use crate :: external_trait_impls:: rayon:: raw:: * ;
53
58
}
Original file line number Diff line number Diff line change @@ -1707,7 +1707,7 @@ impl<T> Iterator for RawIterRange<T> {
1707
1707
// than the group size where the trailing control bytes are all
1708
1708
// EMPTY. On larger tables self.end is guaranteed to be aligned
1709
1709
// to the group size (since tables are power-of-two sized).
1710
- if let None = self . inner . next_group ( ) {
1710
+ if self . inner . next_group ( ) . is_none ( ) {
1711
1711
return None ;
1712
1712
}
1713
1713
self . data = self . data . next_n ( Group :: WIDTH ) ;
You can’t perform that action at this time.
0 commit comments