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