Skip to content

Instantly share code, notes, and snippets.

@monkeydom
Created August 24, 2011 10:33
Show Gist options
  • Save monkeydom/1167744 to your computer and use it in GitHub Desktop.
Save monkeydom/1167744 to your computer and use it in GitHub Desktop.
Objective-C Compare Macro for your convenience
#if !defined(COMPARE)
#define COMPARE(A,B) ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? NSOrderedAscending : (__a > __b ? NSOrderedDescending : NSOrderedSame); })
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment