Skip to content

Commit

Permalink
implement Clone for IntoIter of Set64
Browse files Browse the repository at this point in the history
  • Loading branch information
droundy committed Sep 8, 2024
1 parent 0d99eb3 commit 61f8375
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/set64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ impl<T: Fits64> std::iter::FromIterator<T> for Set64<T> {
}

/// An iterator.
#[derive(Clone)]
pub struct IntoIter<T: Fits64>(crate::setu64::IntoIter, PhantomData<T>);

impl<T: Fits64> Iterator for IntoIter<T> {
Expand Down

0 comments on commit 61f8375

Please sign in to comment.