You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
362 B
16 lines
362 B
// |
|
// RACIndexSetSequence.h |
|
// ReactiveObjC |
|
// |
|
// Created by Sergey Gavrilyuk on 12/18/13. |
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved. |
|
// |
|
|
|
#import "RACSequence.h" |
|
|
|
// Private class that adapts an array to the RACSequence interface. |
|
@interface RACIndexSetSequence : RACSequence |
|
|
|
+ (RACSequence *)sequenceWithIndexSet:(NSIndexSet *)indexSet; |
|
|
|
@end
|
|
|