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.
18 lines
515 B
18 lines
515 B
// |
|
// RACArraySequence.h |
|
// ReactiveObjC |
|
// |
|
// Created by Justin Spahr-Summers on 2012-10-29. |
|
// Copyright (c) 2012 GitHub. All rights reserved. |
|
// |
|
|
|
#import "RACSequence.h" |
|
|
|
// Private class that adapts an array to the RACSequence interface. |
|
@interface RACArraySequence : RACSequence |
|
|
|
// Returns a sequence for enumerating over the given array, starting from the |
|
// given offset. The array will be copied to prevent mutation. |
|
+ (RACSequence *)sequenceWithArray:(NSArray *)array offset:(NSUInteger)offset; |
|
|
|
@end
|
|
|