Instance Method
インスタンスメソッド
add(_:)
Adds a given object to the set.
ある与えられたオブジェクトを集合に追加します。
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
登録項目の追加と除去
func remove(Any)
Removes a given object from the set.
ある与えられたオブジェクトをこの集合から取り除きます。