Created
August 18, 2016 12:43
-
-
Save Nercury/d9e1b9293972452df6bbdac5badbe189 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub fn all_coords<'r>(&'r self) -> impl Iterator<Item=(usize, usize)> + 'r { | |
(0..self.items.len()).map(move |i: usize| (i % self.w, i / self.w)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment