mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
14 lines
258 B
Objective-C
14 lines
258 B
Objective-C
#import <SSignalKit/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
|