func remove(at: Int) -> Element
Removes and returns the element at the specified position.
指定された位置での要素を削除して返します。
func removeFirst () -> Element
Removes and returns the first element of the collection.
コレクションの最初の要素を削除して返します。
func removeFirst (Int)
Removes the specified number of elements from the beginning of the collection.
指定された数の要素をコレクションの始まりから削除します。
func removeLast (Int)
Removes the specified number of elements from the end of the collection.
指定された数の要素をコレクションの終わりから削除します。
func removeSubrange (Range<Int>)
Removes the elements in the specified subrange from the collection.
指定された下位範囲の中の要素をコレクションから削除します。
func removeSubrange <R>(R)
Removes the elements in the specified subrange from the collection.
指定された下位範囲の中の要素をコレクションから削除します。
func removeAll (where: (Element) -> Bool)
Removes all the elements that satisfy the given predicate.
与えられた述部を満たす要素すべてを除去します。
func removeAll (keepingCapacity : Bool)
Removes all elements from the array.
配列からすべての要素を取り除きます。
func popLast () -> Element?
Removes and returns the last element of the collection.
コレクションの最後の要素を削除して返します。