subscript(Int) -> Element
Accesses the element at the specified position.
指定された位置で要素にアクセスします。
var last: Element?
The last element of the collection.
コレクションの最後の要素。
subscript(Range<Int>) -> ArraySlice<Element>
Accesses a contiguous subrange of the array’s elements.
配列のもつ要素らの中のある連続した下位範囲にアクセスします。
subscript<R>(R) -> ArraySlice<Element>
Accesses the contiguous subrange of the collection’s elements specified by a range expression.
範囲式によって指定される、コレクションの要素からなる連続した下位範囲にアクセスします。
func randomElement () -> Element?
Returns a random element of the collection.
コレクションのある無作為の要素を返します。
func randomElement <T>(using: inout T) -> Element?
Returns a random element of the collection, using the given generator as a source for randomness.
コレクションのある無作為な要素を返します、与えられた生成子を無作為さの出典として使って使います。