func add(Any)
Adds a given object to the set.
ある与えられたオブジェクトを集合に追加します。
Availability 有効性
Technology
func remove(_ object: Any)
anObject
The object to remove from the set. この集合から削除するオブジェクト。
If an
is present in the set, decrements the count associated with it. If the count is decremented to 0
, an
is removed from the set. remove(_:)
does nothing if an
is not present in the set.
an
が集合の中に存在するならば、それと結び付けられる計数を漸減してください。計数が0
にまで漸減されるならば、an
は集合から取り除かれます。remove(_:)
は、an
が集合の中に存在しないならば何もしません。
func add(Any)
func count(for: Any) -> Int