RACIndexSetSequence.h 362 B

12345678910111213141516
  1. //
  2. // RACIndexSetSequence.h
  3. // ReactiveObjC
  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. + (RACSequence *)sequenceWithIndexSet:(NSIndexSet *)indexSet;
  12. @end