func removeAllObjects ()
Empties the array of all its elements.
配列を全てのそれの要素を出して空にします。
func removeLastObject ()
Removes the object with the highest-valued index in the array
配列の中で最も高い値のインデックスを持つオブジェクトを取り除きます。
func remove(Any)
Removes all occurrences in the array of a given object.
与えられたオブジェクトのその配列の中の全ての出現を除去します。
func remove(Any, in: NSRange)
Removes all occurrences within a specified range in the array of a given object.
与えられたオブジェクトのその配列の中の指定された範囲内の全ての出現を除去します。
func removeObject (at: Int)
Removes the object at
index
.
index
でのオブジェクトを除去します。
func removeObjects (at: IndexSet)
Removes the objects at the specified indexes from the array.
指定されたインデックスそれらでのオブジェクトを配列から除去します。
func removeObject (identicalTo : Any)
Removes all occurrences of a given object in the array.
与えられたオブジェクトの全ての出現を配列から除去します。
func removeObject (identicalTo : Any, in: NSRange)
Removes all occurrences of
anObject
within the specified range in the array.
anObject
の全ての出現を配列の中の指定された範囲内から除去します。
func removeObjects (fromIndices : UnsafeMutablePointer<Int>, numIndices : Int)
Removes the specified number of objects from the array, beginning at the specified index.
指定されたインデックスで開始して、指定された数のオブジェクトを配列から除去します。
func removeObjects (in: [Any])
Removes from the receiving array the objects in another given array.
受け手側の配列から別の与えられた配列の中のオブジェクトを除去します。