Instance Method インスタンスメソッド

remove(_:)

Removes all occurrences in the array of a given object. 与えられたオブジェクトのその配列の中の全ての出現を除去します。

Declaration 宣言

func remove(_ anObject: Any)

Parameters パラメータ

anObject

The object to remove from the array. 配列から取り除かれることになるオブジェクト。

Discussion 議論

This method determines a match by comparing anObject to the objects in the receiver using the isEqual: method. If the array does not contain anObject, the method has no effect (although it does incur the overhead of searching the contents). このメソッドは、anObjectをレシーバの中のオブジェクトとisEqual:メソッドを使って比較することによってある一致を特定します。配列がanObjectを含まないならば、メソッドは効果を持ちません(にもかかわらずそれは内容を検索する経費を招きます)。

See Also 参照

Removing Objects オブジェクトを取り除く