NSString+RACSequenceAdditions.h 547 B

12345678910111213141516171819202122
  1. //
  2. // NSString+RACSequenceAdditions.h
  3. // ReactiveCocoa
  4. //
  5. // Created by Justin Spahr-Summers on 2012-10-29.
  6. // Copyright (c) 2012 GitHub. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class RACSequence;
  10. @interface NSString (RACSequenceAdditions)
  11. /// Creates and returns a sequence containing strings corresponding to each
  12. /// composed character sequence in 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