RACUnit.h 437 B

1234567891011121314151617181920212223
  1. //
  2. // RACUnit.h
  3. // ReactiveObjC
  4. //
  5. // Created by Josh Abernathy on 3/27/12.
  6. // Copyright (c) 2012 GitHub, Inc. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. /// A unit represents an empty value.
  11. ///
  12. /// It should never be necessary to create a unit yourself. Just use +defaultUnit.
  13. @interface RACUnit : NSObject
  14. /// A singleton instance.
  15. + (RACUnit *)defaultUnit;
  16. @end
  17. NS_ASSUME_NONNULL_END