mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-06-13 05:17:47 +02:00
10 lines
186 B
Objective-C
10 lines
186 B
Objective-C
#import <SSignalKit/SSignalKit.h>
|
|
|
|
@interface SSignal (Take)
|
|
|
|
- (SSignal *)take:(NSUInteger)count;
|
|
- (SSignal *)takeLast;
|
|
- (SSignal *)takeUntilReplacement:(SSignal *)replacement;
|
|
|
|
@end
|