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

add(_:)

Adds a given object to the set. ある与えられたオブジェクトを集合に追加します。

Declaration 宣言

func add(_ object: Any)

Parameters パラメータ

anObject

The object to add to the set. 集合に加えることになるオブジェクト。

Discussion 議論

If anObject is already a member, add(_:) increments the count associated with the object. If anObject is not already a member, it is sent a retain message. anObjectがすでに1メンバーならば、add(_:)はそのオブジェクトと結び付けられる計数を漸増します。anObjectがまだメンバーでないならば、それはretainメッセージを送られます。

See Also 参照

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