A few tips on how to implement iterators. ... impl MyCollection { fn iter(&self) -> impl Iterator { self.data.iter() } // ... }.
確定! 回上一頁