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