On this page
article
what is a loop ?
What Is a Loop?
Loops are used to iterate until a defined condition is reached.
Types of Loops
There are two types of loops in Rust:
Definite Loops :- Loops in which the number of iterations is known at compile time.
Example
- for
Indefinite Loops :- Loops in which the number of iterations is not known at compile time.
Example
- while
- loop
Last updated 25 Jan 2024, 05:11 +0530 .