RRust By Example
intermediateFlow Control

While Let

Loop with pattern matching at the top.

While Let

Loop with pattern matching at the top.

Difficulty

Intermediate

Code

rust
fn main() {
    let mut stack = vec![1, 2, 3, 4, 5];
    while let Some(top) = stack.pop() {
        println!("popped: {}", top);
    }
}

Explanation

This example demonstrates how to use while let in Rust. Read the code carefully to understand the flow. Pay attention to where values are created, borrowed, moved, or consumed.

Key Concepts

  • Rust's strong type system catches errors at compile time
  • Ownership and borrowing rules ensure memory safety
  • Pattern matching makes code expressive and exhaustive

Related Topics

Browse more examples in the flow-control category to build a complete understanding of this topic.

More Flow Control Examples