This content originally appeared on flaviocopes.com and was authored by flaviocopes.com
This tutorial belongs to the Swift series
Swift provides you 2 statements that you can use to control the flow inside a loop: continue
and break
continue
is used to stop the current iteration, and run the next iteration of the loop.
break
ends the loop, not executing any other iteration.
Example:
let list = ["a", "b", "c"]
for item in list {
if (item == "b") {
break
}
//do something
}
This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

flaviocopes.com | Sciencx (2021-05-28T05:00:00+00:00) Swift Loops Control Transfer Statements. Retrieved from https://www.scien.cx/2021/05/28/swift-loops-control-transfer-statements/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.