func contains(IndexSet.Element) -> Bool
Returns
true
if self
contains integer
.
true
を返します、もしself
がinteger
を含むならば。
func contains(integersIn : IndexSet) -> Bool
Returns
true
if self
contains all of the integers in indexSet
.
true
を返します、もしself
がindexSet
の中のすべての整数を含むならば。
func contains(integersIn : Range<IndexSet.Element>) -> Bool
Returns
true
if self
contains all of the integers in range
.
true
を返します、もしself
がrange
の中のすべての整数を含むならば。
func contains(where: (Int) -> Bool) -> Bool
Returns a Boolean value indicating whether the sequence contains an element that satisfies the given predicate.
指定された述部を満足させるある要素をシーケンスが含むかどうかを指し示すブール値を返します。
func intersects(integersIn : Range<IndexSet.Element>) -> Bool
Returns
true
if self
intersects any of the integers in range
.
true
を返します、もしself
がrange
の中の整数のいくらかと交わるならば。
func starts<PossiblePrefix>( with: PossiblePrefix) -> Bool
Returns a Boolean value indicating whether the initial elements of the sequence are the same as the elements in another sequence.
シーケンスの最初の要素らが別のシーケンスの中の要素らと同じかどうかを指し示すブール値を返します。
func isDisjoint (with: IndexSet) -> Bool
Returns a Boolean value that indicates whether the set has no members in common with the given set.
この集合が、与えられた集合と共通のメンバを1つも持たないかどうかを指し示すブール値を返します。
func isStrictSubset (of: IndexSet) -> Bool
Returns a Boolean value that indicates whether this set is a strict subset of the given set.
この集合は与えられた集合の狭義の下位集合であるかどうかを指し示すブール値を返します。
func isStrictSuperset (of: IndexSet) -> Bool
Returns a Boolean value that indicates whether this set is a strict superset of the given set.
この集合は与えられた集合の狭義の上位集合であるかどうかを指し示すブール値を返します。
func isSubset (of: IndexSet) -> Bool
Returns a Boolean value that indicates whether the set is a subset of another set.
この集合は別の集合の下位集合であるかどうかを指し示すブール値を返します。