Files
SellyCloudSDK_demo/Example/Pods/ReactiveObjC/ReactiveObjC/RACUnit.h
2026-03-01 15:59:27 +08:00

24 lines
437 B
Objective-C

//
// RACUnit.h
// ReactiveObjC
//
// Created by Josh Abernathy on 3/27/12.
// Copyright (c) 2012 GitHub, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/// A unit represents an empty value.
///
/// It should never be necessary to create a unit yourself. Just use +defaultUnit.
@interface RACUnit : NSObject
/// A singleton instance.
+ (RACUnit *)defaultUnit;
@end
NS_ASSUME_NONNULL_END