Operator: !==

operator !== { associativity precedence }

Declarations

func !==(_: AnyObject?, rhs: AnyObject?)

Returns a Boolean value indicating whether two references point to different object instances.

This operator tests whether two instances have different identities, not different values. For value inequality, see the not-equal-to operator (!=) and the Equatable protocol.

Parameters: lhs: A reference to compare. rhs: Another reference to compare.

See Also: Equatable, ===, !=

Declaration

func !==(lhs: AnyObject?, rhs: AnyObject?) -> Bool