Swift Loops Control Transfer Statements

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…


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


Print Share Comment Cite Upload Translate Updates
APA

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/

MLA
" » Swift Loops Control Transfer Statements." flaviocopes.com | Sciencx - Friday May 28, 2021, https://www.scien.cx/2021/05/28/swift-loops-control-transfer-statements/
HARVARD
flaviocopes.com | Sciencx Friday May 28, 2021 » Swift Loops Control Transfer Statements., viewed ,<https://www.scien.cx/2021/05/28/swift-loops-control-transfer-statements/>
VANCOUVER
flaviocopes.com | Sciencx - » Swift Loops Control Transfer Statements. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/28/swift-loops-control-transfer-statements/
CHICAGO
" » Swift Loops Control Transfer Statements." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2021/05/28/swift-loops-control-transfer-statements/
IEEE
" » Swift Loops Control Transfer Statements." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2021/05/28/swift-loops-control-transfer-statements/. [Accessed: ]
rf:citation
» Swift Loops Control Transfer Statements | flaviocopes.com | Sciencx | 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.

You must be logged in to translate posts. Please log in or register.