Last active
January 7, 2016 16:05
-
-
Save cdzombak/e6e6f7552b617505656c to your computer and use it in GitHub Desktop.
if-let in ObjC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
#define iflet(LHS, RHS) \ | |
for (id obj_ = (RHS); obj_ != nil;) \ | |
for (LHS = (obj_ ?: (RHS)); obj_ != nil; obj_ = nil) | |
int main(int argc, char *argv[]) { | |
@autoreleasepool { | |
NSString *x = nil; | |
NSString *y = @"y"; | |
iflet(NSString *z, x) { | |
NSLog(@"x is non-nil: %@", z); | |
} | |
iflet(NSString *z, y) { | |
NSLog(@"y is non-nil: %@", z); | |
} | |
} | |
} | |
/* outputs: | |
Untitled[44105:2794964] y is non-nil: y | |
*/ |
Do you have a way to add an else case? This is what I came up with and it seems to work but I'm not sure if I overlooked anything.
#define iflet(LHS, RHS) \
for (BOOL b_ = YES; b_ != NO;) \
for (id obj_ = (RHS); b_ != NO;) \
for (LHS = (obj_ ?: (RHS)); b_ != NO; b_ = NO) \
if (obj_ != nil)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks to Justin for improving this macro: https://twitter.com/jspahrsummers/status/570995129919500288 / https://twitter.com/jspahrsummers/status/570996870421458944