NSIndexSet+RACSequenceAdditions.h 523 B

12345678910111213141516171819202122
  1. //
  2. // NSIndexSet+RACSequenceAdditions.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Sergey Gavrilyuk on 12/17/13.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class RACSequence;
  10. @interface NSIndexSet (RACSequenceAdditions)
  11. /// Creates and returns a sequence of indexes (as `NSNumber`s) corresponding to
  12. /// the receiver.
  13. ///
  14. /// Mutating the receiver will not affect the sequence after it's been created.
  15. @property (nonatomic, copy, readonly) RACSequence *rac_sequence;
  16. @end