Skip to content

Commit d2510f4

Browse files
ronnodasjswrenn
authored andcommitted
remove Clone bound from array_combinations
1 parent a015a68 commit d2510f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ pub trait Itertools: Iterator {
17151715
#[cfg(feature = "use_alloc")]
17161716
fn array_combinations<const K: usize>(self) -> ArrayCombinations<Self, K>
17171717
where
1718-
Self: Sized + Clone,
1718+
Self: Sized,
17191719
Self::Item: Clone,
17201720
{
17211721
combinations::array_combinations(self)

0 commit comments

Comments
 (0)