File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 1
1
use alloc:: vec:: Vec ;
2
2
use std:: fmt;
3
3
use std:: iter:: FusedIterator ;
4
- use std:: usize;
5
4
6
5
use super :: combinations:: { combinations, Combinations } ;
7
6
use crate :: adaptors:: checked_binomial;
Original file line number Diff line number Diff line change 2
2
//!
3
3
4
4
use std:: cmp;
5
- use std:: usize;
6
5
7
6
/// `SizeHint` is the return type of `Iterator::size_hint()`.
8
7
pub type SizeHint = ( usize , Option < usize > ) ;
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ macro_rules! impl_zip_iter {
82
82
83
83
fn size_hint( & self ) -> ( usize , Option <usize >)
84
84
{
85
- let sh = ( :: std :: usize :: MAX , None ) ;
85
+ let sh = ( usize :: MAX , None ) ;
86
86
let ( $( ref $B, ) * ) = self . t;
87
87
$(
88
88
let sh = size_hint:: min( $B. size_hint( ) , sh) ;
You can’t perform that action at this time.
0 commit comments