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

indexOfObjectIdentical(to:)

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

Declaration 宣言

func indexOfObjectIdentical(to anObject: Any) -> Int

Parameters パラメータ

anObject

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

Return Value 戻り値

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

Discussion 議論

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

See Also 参照

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

Related Documentation 関連文書