検索
はじめに SwiftにはCollectionというprotocolがあります。その代表例がArrayです。 var numbers = [1, 2, 3] // 読み取り可能 numbers[0] // 1 // ···