<!--
{
  "availability" : [
    "iOS: 2.0.0 -",
    "iPadOS: 2.0.0 -",
    "macCatalyst: 13.0.0 -",
    "macOS: 10.0.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Foundation",
  "identifier" : "/documentation/Foundation/NSArray/indexOfObjectIdentical(to:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Foundation"
    ],
    "preciseIdentifier" : "c:objc(cs)NSArray(im)indexOfObjectIdenticalTo:"
  },
  "title" : "indexOfObjectIdentical(to:)"
}
-->

# indexOfObjectIdentical(to:)

Returns the lowest index whose corresponding array value is identical to a given object.

```
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`.

## Discussion

Objects are considered identical if their object addresses are the same.

## See Also

[`contains(_:)`](/documentation/Foundation/NSArray/contains(_:))

Returns a Boolean value that indicates whether a given object is present in the array.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)