RACIndexSetSequence.h 362 B

1234567891011121314151617
  1. //
  2. // RACIndexSetSequence.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Sergey Gavrilyuk on 12/18/13.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import "RACSequence.h"
  9. // Private class that adapts an array to the RACSequence interface.
  10. @interface RACIndexSetSequence : RACSequence
  11. + (instancetype)sequenceWithIndexSet:(NSIndexSet *)indexSet;
  12. @end