mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
13 lines
272 B
Objective-C
13 lines
272 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface SAtomic : NSObject
|
|
|
|
- (instancetype)initWithValue:(id)value;
|
|
- (instancetype)initWithValue:(id)value recursive:(bool)recursive;
|
|
- (id)swap:(id)newValue;
|
|
- (id)value;
|
|
- (id)modify:(id (^)(id))f;
|
|
- (id)with:(id (^)(id))f;
|
|
|
|
@end
|