[][src]Function dart_sys::Dart_IdentityEquals

pub unsafe extern "C" fn Dart_IdentityEquals(
    obj1: Dart_Handle,
    obj2: Dart_Handle
) -> bool

Checks to see if two handles refer to identically equal objects.

If both handles refer to instances, this is equivalent to using the top-level function identical() from dart:core. Otherwise, returns whether the two argument handles refer to the same object.

\param obj1 An object to be compared. \param obj2 An object to be compared.

\return True if the objects are identically equal. False otherwise.