func index(of: Any) -> Int
Returns the lowest index whose corresponding array value is equal to a given object.
最も低いインデックスで、それの対応する配列値が指定されたオブジェクトと同等であるものを返します。
func index(of: Any, in: NSRange) -> Int
Returns the lowest index within a specified range whose corresponding array value is equal to a given object .
指定された範囲内の最も低いインデックスで、それの対応する配列値がある与えられたオブジェクトと同一であるものを返します。
func indexOfObjectIdentical (to: Any, in: NSRange) -> Int
Returns the lowest index within a specified range whose corresponding array value is equal to a given object .
指定された範囲内の最も低いインデックスで、それの対応する配列値がある与えられたオブジェクトと同一であるものを返します。
func indexOfObject (passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index of the first object in the array that passes a test in a given block.
配列の中の最初のオブジェクトのインデックスを返します、それは、与えられた「ブロック」の中のテストを合格したものです。
func indexOfObject (options: NSEnumerationOptions, passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index of an object in the array that passes a test in a given block for a given set of enumeration options.
配列の中の最初のオブジェクトのインデックスを返します、それは、与えられた「ブロック」の中のテストを一式の与えられた列挙オプションで合格したものです。
func indexOfObject (at: IndexSet, options: NSEnumerationOptions, passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
Returns the index, from a given set of indexes, of the first object in the array that passes a test in a given block for a given set of enumeration options.
配列の中の最初のオブジェクトのインデックスを、与えられた一揃いのインデックスから返します、それは、与えられた「ブロック」の中のテストを一式の与えられた列挙オプションで合格したものです。
func indexesOfObjects (passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns the indexes of objects in the array that pass a test in a given block.
配列中のオブジェクトのインデックスを返します、それは与えられた「ブロック」の中のテストを合格するものです。
func indexesOfObjects (options: NSEnumerationOptions, passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns the indexes of objects in the array that pass a test in a given block for a given set of enumeration options.
配列の中のオブジェクトのインデックスを返します、それは与えられた「ブロック」の中のテストを一式の与えられた列挙オプションで合格するものです。
func indexesOfObjects (at: IndexSet, options: NSEnumerationOptions, passingTest : (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
Returns the indexes, from a given set of indexes, of objects in the array that pass a test in a given block for a given set of enumeration options.
配列の中のいくらかのオブジェクトのインデックスを、与えられた一揃いのインデックスから返します、それは、与えられた「ブロック」の中のテストを一式の与えられた列挙オプションで合格したものです。
func index(of: Any, inSortedRange : NSRange, options: NSBinarySearchingOptions, usingComparator : (Any, Any) -> ComparisonResult) -> Int
Returns the index, within a specified range, of an object compared with elements in the array using a given
NSComparator
block.
与えられたNSComparator
ブロックを使って配列の中の要素と比較される、指定された範囲内の、あるオブジェクトのインデックスを返します。