2020-08-04 14:57:01 +03:00
|
|
|
// iterators1.rs
|
2021-05-12 18:20:07 +03:00
|
|
|
//
|
2023-05-29 20:39:08 +03:00
|
|
|
// When performing operations on elements within a collection, iterators are
|
|
|
|
// essential. This module helps you get familiar with the structure of using an
|
|
|
|
// iterator and how to go through elements within an iterable collection.
|
2020-08-04 14:57:01 +03:00
|
|
|
//
|
2023-05-29 20:39:08 +03:00
|
|
|
// Make me compile by filling in the `???`s
|
2021-05-12 18:20:07 +03:00
|
|
|
//
|
2023-05-29 20:39:08 +03:00
|
|
|
// Execute `rustlings hint iterators1` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2020-08-04 14:57:01 +03:00
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
2023-08-27 02:06:01 +03:00
|
|
|
#[test]
|
2023-02-24 16:51:03 +03:00
|
|
|
fn main() {
|
2020-08-04 14:57:01 +03:00
|
|
|
let my_fav_fruits = vec!["banana", "custard apple", "avocado", "peach", "raspberry"];
|
|
|
|
|
|
|
|
let mut my_iterable_fav_fruits = ???; // TODO: Step 1
|
|
|
|
|
|
|
|
assert_eq!(my_iterable_fav_fruits.next(), Some(&"banana"));
|
|
|
|
assert_eq!(my_iterable_fav_fruits.next(), ???); // TODO: Step 2
|
|
|
|
assert_eq!(my_iterable_fav_fruits.next(), Some(&"avocado"));
|
|
|
|
assert_eq!(my_iterable_fav_fruits.next(), ???); // TODO: Step 3
|
2022-03-30 14:27:52 +03:00
|
|
|
assert_eq!(my_iterable_fav_fruits.next(), Some(&"raspberry"));
|
|
|
|
assert_eq!(my_iterable_fav_fruits.next(), ???); // TODO: Step 4
|
2020-08-04 14:57:01 +03:00
|
|
|
}
|