mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-07 16:11:13 +00:00
13 lines
202 B
Objective-C
13 lines
202 B
Objective-C
#import "SSignal.h"
|
|
|
|
@class SQueue;
|
|
|
|
@interface SSignal (Meta)
|
|
|
|
- (SSignal *)switchToLatest;
|
|
- (SSignal *)mapToSignal:(SSignal *(^)(id))f;
|
|
- (SSignal *)then:(SSignal *)signal;
|
|
- (SSignal *)queue;
|
|
|
|
@end
|