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

remove(_:)

Removes a given object from the set. ある与えられたオブジェクトをこの集合から取り除きます。

Declaration 宣言

func remove(_ object: Any)

Parameters パラメータ

anObject

The object to remove from the set. この集合から削除するオブジェクト。

Discussion 議論

If anObject is present in the set, decrements the count associated with it. If the count is decremented to 0, anObject is removed from the set. remove(_:) does nothing if anObject is not present in the set. anObjectが集合の中に存在するならば、それと結び付けられる計数を漸減してください。計数が0にまで漸減されるならば、anObjectは集合から取り除かれます。remove(_:)は、anObjectが集合の中に存在しないならば何もしません。

See Also 参照

Adding and Removing Entries 登録項目の追加と除去

Related Documentation 関連文書