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

indexOfObjectIdentical(to:in:)

Returns the lowest index within a specified range whose corresponding array value is equal to a given object . 指定された範囲内の最も低いインデックスで、それの対応する配列値がある与えられたオブジェクトと同一であるものを返します。

Declaration 宣言

func indexOfObjectIdentical(to anObject: Any, 
                         in range: NSRange) -> Int

Parameters パラメータ

anObject

An object. あるオブジェクト。

range

The range of indexes in the array within which to search for anObject. この配列のインデックスの範囲、その内部においてanObjectを捜すことになります。

Return Value 戻り値

The lowest index within range whose corresponding array value is identical to anObject. If none of the objects within range is identical to anObject, returns NSNotFound. range内の最も低いインデックスで、それの対応する配列値がanObjectと同一であるもの。range中のオブジェクトにanObjectと同一なものが1つもないならば、NSNotFoundを返します。

Discussion 議論

Objects are considered identical if their object addresses are the same. オブジェクトは、それらのアドレスが同じならば同一とみなされます。

See Also 参照

Finding Objects in an Array 配列内のオブジェクトを見つける

Related Documentation 関連文書