infix operator === { associativity none precedence 130 } Declarations func ===(_: AnyObject?, rhs: AnyObject?) Returns true iff lhs and rhs are references to the same object instance (in other words, are identical pointers). See Also: Equatable, == Declaration func ===(lhs: AnyObject?, rhs: AnyObject?) -> Bool func === <L : AnyCollectionType, R : AnyCollectionType>(_: L, rhs: R) Returns true iff lhs and rhs store the same underlying collection. Declaration func ===<L : AnyCollectionType, R : AnyCollectionType>(lhs: L, rhs: R) -> Bool