-
-
Save jspahrsummers/632dc58ceb165e9ccc1b to your computer and use it in GitHub Desktop.
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 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment