Hands-On Design Patterns with Swift
上QQ阅读APP看书,第一时间看更新

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.