func isSuperset (of: Self) -> Bool
Returns a Boolean value that indicates whether the set is a superset of the given set.
この集合が、与えられた集合の上位集合であるかどうかを指し示すブール値を返します。
Availability
Technology
func isSuperset(of other: Self) -> Bool
other
A set of the same type as the current set. 現在の集合と同じ型の集合。
true
if the set is a superset of possible
; otherwise, false
.
true
、この集合がpossible
の上位集合であるならば;そうでなければ、false
。
Set A is a superset of another set B if every member of B is also a member of A. 集合Aがもう1つの集合Bの狭義の上位集合であるのは、BのすべてのメンバがまたAのメンバである場合です。
func isSuperset (of: Self) -> Bool