Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tuplez-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn tuple_traits_impl(input: TokenStream) -> TokenStream {
type Iter<'a> = std::array::IntoIter<&'a T, 0> where Self: 'a, T: 'a;
type IterMut<'a> = std::array::IntoIter<&'a mut T, 0> where Self: 'a, T: 'a;
fn to_array(self) -> Self::Array {
Default::default()
[]
}
fn iter<'a>(&'a self) -> Self::Iter<'a>
where
Expand Down