func contains(Int) -> Bool
Indicates whether the index set contains a specific index.
インデックス集合が特定のインデックスを含むかどうかを指し示します。
func contains(IndexSet) -> Bool
Indicates whether the receiving index set contains a superset of the indexes in another index set.
受け手側インデックス集合が別のインデックス集合の中のインデックスのスーパーセットを含むかどうかを指し示します。
func contains(in: NSRange) -> Bool
Indicates whether the index set contains the indexes represented by an index range.
インデックス集合があるインデックス範囲によって表されるインデックスそれらを含むかどうかを指し示します。
func intersects(in: NSRange) -> Bool
Indicates whether the index set contains any of the indexes in a range.
インデックス集合がある範囲の中のインデックスのいくらかを含むかどうかを指し示します。
var count: Int
The number of indexes in the index set.
インデックス集合の中のインデックスの数。
func countOfIndexes (in: NSRange) -> Int
Returns the number of indexes in the index set that are members of a given range.
与えられた範囲のメンバである、そのインデックス集合の中のインデックスの数を返します。
func indexes(passingTest : (Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns an
NSIndexSet
containing the receiving index set’s objects that pass the Block test.
受け手側インデックス集合の持つオブジェクトで、Blockテストに合格するものを含むNSIndexSet
を返します。
func index(options: NSEnumerationOptions, passingTest : (Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index of the first object that passes the predicate Block test using the specified enumeration options.
措定された列挙オプションを使ってBlockテストに合格する最初のオブジェクトのインデックスを返します。
func indexes(options: NSEnumerationOptions, passingTest : (Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns an
NSIndexSet
containing the receiving index set’s objects that pass the Block test using the specified enumeration options.
受け手側インデックス集合の持つオブジェクトで、その指定された列挙オプションを使ってBlockテストに合格するものを含むNSIndexSet
返します。
func index(in: NSRange, options: NSEnumerationOptions, passingTest : (Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index of the first object in the specified range that passes the predicate Block test.
Blockテストを合格する、この指定された範囲の中の最初のオブジェクトのインデックスを返します。
func indexes(in: NSRange, options: NSEnumerationOptions, passingTest : (Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns an
NSIndexSet
containing the receiving index set’s objects in the specified range that pass the Block test.
受け手側インデックス集合の持つオブジェクトで、指定された範囲の中にあり、Blockテストに合格するものを含んでいるNSIndexSet
を返します。