RACUnit.h 390 B

1234567891011121314151617181920
  1. //
  2. // RACUnit.h
  3. // ReactiveCocoa
  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. /// A unit represents an empty value.
  10. ///
  11. /// It should never be necessary to create a unit yourself. Just use +defaultUnit.
  12. @interface RACUnit : NSObject
  13. /// A singleton instance.
  14. + (RACUnit *)defaultUnit;
  15. @end