mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-05-01 04:07:51 +02:00
10 lines
166 B
Objective-C
10 lines
166 B
Objective-C
#import <SSignalKit/SSignal.h>
|
|
|
|
@interface SSignal (Mapping)
|
|
|
|
- (SSignal *)map:(id (^)(id))f;
|
|
- (SSignal *)filter:(bool (^)(id))f;
|
|
- (SSignal *)ignoreRepeated;
|
|
|
|
@end
|