NSEnumerator+RACSequenceAdditions.h 479 B

123456789101112131415161718192021
  1. //
  2. // NSEnumerator+RACSequenceAdditions.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Uri Baghin on 07/01/2013.
  6. // Copyright (c) 2013 GitHub, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class RACSequence;
  10. @interface NSEnumerator (RACSequenceAdditions)
  11. /// Creates and returns a sequence corresponding to the receiver.
  12. ///
  13. /// The receiver is exhausted lazily as the sequence is enumerated.
  14. @property (nonatomic, copy, readonly) RACSequence *rac_sequence;
  15. @end