Operator
|
Description
|
---|---|
![]() |
Evaluates y while x is nonzero (true). The condition expression is evaluated at the beginning of the while loop, so the loop may never execute. The loop stops iterating as soon as the condition is false and it returns the last value calculated in its body on the previous iteration.
|