Skip to content

Instantly share code, notes, and snippets.

@hborders
Last active March 13, 2017 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hborders/f1c231a89de11157adf46ee85880733a to your computer and use it in GitHub Desktop.
Save hborders/f1c231a89de11157adf46ee85880733a to your computer and use it in GitHub Desktop.
An Objective-C pattern for making sum types - ExampleBar.h
#import "Example.h" // https://gist.github.com/hborders/2af9b39e27b62ef9e68c65085126fe4a
@interface ExampleBar : Example
@property (nonatomic, readonly) NSInteger b;
@property (nonatomic, readonly) NSInteger c;
+ (instancetype _Nonnull)new NS_UNAVAILABLE;
- (instancetype _Nonnull)init NS_UNAVAILABLE;
- (instancetype _Nonnull)initWithB:(NSInteger)b
c:(NSInteger)c NS_DESIGNATED_INITIALIZER;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment