Remove useless ToPrimitive bound on range_inclusive()
This commit is contained in:
parent
e546452727
commit
c7454853d2
1 changed files with 1 additions and 1 deletions
|
|
@ -2016,7 +2016,7 @@ pub struct RangeInclusive<A> {
|
|||
|
||||
/// Return an iterator over the range [start, stop]
|
||||
#[inline]
|
||||
pub fn range_inclusive<A: Add<A, A> + Ord + Clone + One + ToPrimitive>(start: A, stop: A)
|
||||
pub fn range_inclusive<A: Add<A, A> + Ord + Clone + One>(start: A, stop: A)
|
||||
-> RangeInclusive<A> {
|
||||
RangeInclusive{range: range(start, stop), done: false}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue