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

isSubset(of:)

Returns a Boolean value that indicates whether every object in the receiving ordered set is also present in another given set. あるブール値を返します、それは受け手側の順序集合の中のあらゆるオブジェクトが別の与えられた集合の中にも存在するかどうかを指し示します。

Declaration 宣言

func isSubset(of set: Set<AnyHashable>) -> Bool

Parameters パラメータ

set

The set with which to compare the receiving ordered set. この集合と受け手側の順序集合を比較することになります。

Return Value 戻り値

true if every object in the receiving ordered set is also present in set, otherwise false. true、もし受け手側の順序集合の中のあらゆるオブジェクトがまたsetの中に存在するならば、そうでなければfalse

See Also 参照

Comparing Sets 集合を比較する