Initializer

init(set:)

Initializes a newly allocated set and adds to it objects from another given set. 新しくアロケートされた集合を初期化して、それに別の与えられた集合からのオブジェクトを加えます。

Declaration 宣言

convenience init(set: Set<AnyHashable>)

Parameters パラメータ

set

A set containing objects to add to the receiving set. Each object is retained as it is added. 受け手側の集合に加えることになるオブジェクトを含んでいる集合。各オブジェクトは、それが加えられる通りに保有されます。

Return Value 戻り値

An initialized objects set containing the objects from set. The returned set might be different than the original receiver. setからのオブジェクトを含んでいる初期化されたオブジェクト集合。返される集合は、オリジナルのレシーバとは異なるかもしれません。

See Also 参照

Initializing a Set 集合を初期化する

Related Documentation 関連文書