- Hands-On Design Patterns with Swift
- Florent Vilmart Giordano Scalzo Sergio De Simone
- 56字
- 2021-07-02 14:45:10
Container types
Container types are data types that are useful for containing other types. We'll spend this section covering the most prominent features of the most widely known and used containers:
- Array
- Dictionary
- Set
Arrays are unordered collections of the same element; dictionaries are keyed collections of elements; sets are unordered collections of unique elements.