November 2020
Intermediate to advanced
766 pages
15h 29m
English
You've learned quite a lot at this point! You can now create a program that stores data in constants or variables and performs operations on them, and you can control the flow using conditionals and loops. So far, however, you've mostly been storing single values.
In this chapter, you will learn ways to store collections of values. Swift has three collection types: arrays, which store an ordered list of values; dictionaries, which store an unordered list of key-value pairs; and sets, which store an unordered list of values.
By the end of this chapter, you'll have learned how to create arrays, dictionaries, and sets, and how to perform operations on them.
The following topics will be covered:
Read now
Unlock full access