mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
268 B
Objective-C
15 lines
268 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class MTQueue;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MTQueueLocalObject<__covariant T> : NSObject
|
|
|
|
- (instancetype)initWithQueue:(MTQueue *)queue generator:(T(^)())generator;
|
|
- (void)with:(void (^)(T))f;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|