hank
2019-06-20 e81c27b13950ca02baa879ae7b8108c0c3ef7fb0
frameworks/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h
@@ -20,17 +20,22 @@
#import <FBSDKCoreKit/FBSDKCopying.h>
NS_ASSUME_NONNULL_BEGIN
/**
  Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject.
 NSObject<NSCopying, NSMutableCopying> implicitly conforms to this protocol.
 */
NS_SWIFT_NAME(MutableCopying)
@protocol FBSDKMutableCopying <FBSDKCopying, NSMutableCopying>
/**
  Implemented by NSObject as a convenience to mutableCopyWithZone:.
 - Returns: A mutable copy of the receiver.
 @return A mutable copy of the receiver.
 */
- (id)mutableCopy;
@end
NS_ASSUME_NONNULL_END