rustlings/exercises/iterators/iterators1.rs

26 lines
1021 B
Rust
Raw Normal View History

2020-08-04 11:57:01 +00:00
// iterators1.rs
//
// 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 11:57:01 +00:00
//
// Make me compile by filling in the `???`s
//
// Execute `rustlings hint iterators1` or use the `hint` watch subcommand for a
// hint.
2020-08-04 11:57:01 +00:00
#[test]
fn main() {
2020-08-04 11:57:01 +00:00
let my_fav_fruits = vec!["banana", "custard apple", "avocado", "peach", "raspberry"];
2024-02-10 17:36:11 +00:00
let mut my_iterable_fav_fruits = my_fav_fruits.iter(); // TODO: Step 1
2020-08-04 11:57:01 +00:00
assert_eq!(my_iterable_fav_fruits.next(), Some(&"banana"));
2024-02-10 17:36:11 +00:00
assert_eq!(my_iterable_fav_fruits.next(), Some(&"custard apple")); // TODO: Step 2
2020-08-04 11:57:01 +00:00
assert_eq!(my_iterable_fav_fruits.next(), Some(&"avocado"));
2024-02-10 17:36:11 +00:00
assert_eq!(my_iterable_fav_fruits.next(), Some(&"peach"));// TODO: Step 3
assert_eq!(my_iterable_fav_fruits.next(), Some(&"raspberry"));
2024-02-10 17:36:11 +00:00
assert_eq!(my_iterable_fav_fruits.next(), None); // TODO: Step 4
2020-08-04 11:57:01 +00:00
}