[][src]Function dart_sys::Dart_ObjectEquals

pub unsafe extern "C" fn Dart_ObjectEquals(
    obj1: Dart_Handle,
    obj2: Dart_Handle,
    equal: *mut bool
) -> Dart_Handle

Checks if the two objects are equal.

The result of the comparison is returned through the 'equal' parameter. The return value itself is used to indicate success or failure, not equality.

May generate an unhandled exception error.

\param obj1 An object to be compared. \param obj2 An object to be compared. \param equal Returns the result of the equality comparison.

\return A valid handle if no error occurs during the comparison.