murasame e64cd1f82e progress 82 percent
Change-Id: I5ec2fda8ecab66c8ee6fcf42ea32b4ffd915ea98
2023-05-25 14:59:03 +08:00

36 lines
839 B
Rust

// options2.rs
// Execute `rustlings hint options2` or use the `hint` watch subcommand for a hint.
#[cfg(test)]
mod tests {
#[test]
fn simple_option() {
let target = "rustlings";
let optional_target = Some(target);
if let Some(word) = optional_target {
assert_eq!(word, target);
}
}
#[test]
fn layered_option() {
let range = 10;
let mut optional_integers: Vec<Option<i8>> = vec![None];
for i in 1..(range + 1) {
optional_integers.push(Some(i));
}
let mut cursor = range;
// You can stack `Option<T>`s into while let and if let
while let Some(Some(integer)) = optional_integers.pop() {
assert_eq!(integer, cursor);
cursor -= 1;
}
assert_eq!(cursor, 0);
}
}