Collection Implementations
No overview available.
概要は利用可能でありません。
Topics
話題
Instance Properties
インスタンスプロパティ
var count: Int
The number of elements in the collection.
コレクションの要素の数を返します。
var isEmpty: Bool
A Boolean value indicating whether the collection is empty.
コレクションが空かどうかを指し示すブール値。
Instance Methods
インスタンス メソッド
func firstIndex(of: Self.Element) -> Self.Index?
Returns the first index where the specified value appears in the collection.
指定された値がコレクションにおいて現れるところの最初のインデックスを返します。
Available when Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
func index(of: Self.Element) -> Self.Index?
Returns the first index where the specified value appears in the collection.
指定された値がコレクションにおいて現れるところの最初のインデックスを返します。
Available when Element
conforms to Equatable
.
Element
がEquatable
に準拠する時に利用可能です。
func makeIterator() -> IndexingIterator<Self>
Returns an iterator over the elements of the collection.
コレクションの要素すべてを対象としたイテレータを返します。
Available when Iterator
is IndexingIterator<Self>
.
Iterator
がIndexingIterator<Self>
である時に利用可能です。
func prefix(Int) -> Self.SubSequence
Returns a subsequence, up to the specified maximum length, containing the initial elements of the collection.
下位シーケンスを、指定された最大長まで、コレクションの冒頭の要素を含めて返します。
Subscripts
添え字
subscript(Range<Self.Index>) -> Slice<Self>
Accesses a contiguous subrange of the collection’s elements.
コレクションのもついくらかの要素からなるある連続した下位範囲にアクセスします。
Available when SubSequence
is Slice<Self>
.
SubSequence
がSlice<Self>
である時に利用可能です。