/// - Parameter object: An instance of a class. This function does *not* modify
/// `object`; the use of `inout` is an implementation artifact.
/// - Returns: `true` if `object` is known to have a single strong reference;
/// otherwise, `false`.
public func isKnownUniquelyReferenced<T>(_ object: inout T) -> Bool where T : AnyObject
网友评论