RACTupleSequence.h 521 B

12345678910111213141516171819
  1. //
  2. // RACTupleSequence.h
  3. // ReactiveObjC
  4. //
  5. // Created by Justin Spahr-Summers on 2013-05-01.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import "RACSequence.h"
  9. // Private class that adapts a RACTuple to the RACSequence interface.
  10. @interface RACTupleSequence : RACSequence
  11. // Returns a sequence for enumerating over the given backing array (from a
  12. // RACTuple), starting from the given offset.
  13. + (RACSequence *)sequenceWithTupleBackingArray:(NSArray *)backingArray offset:(NSUInteger)offset;
  14. @end