mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-28 08:49:46 +00:00
git-subtree-dir: submodules/MtProtoKit git-subtree-mainline:3b155750f5git-subtree-split:14ab734b97
12 lines
206 B
Objective-C
12 lines
206 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface MTAtomic : NSObject
|
|
|
|
- (instancetype)initWithValue:(id)value;
|
|
- (id)swap:(id)newValue;
|
|
- (id)value;
|
|
- (id)modify:(id (^)(id))f;
|
|
- (id)with:(id (^)(id))f;
|
|
|
|
@end
|