Skip to content

Instantly share code, notes, and snippets.

@itsthejb
Last active August 29, 2015 13:57
Show Gist options
  • Save itsthejb/9917732 to your computer and use it in GitHub Desktop.
Save itsthejb/9917732 to your computer and use it in GitHub Desktop.
Obj-C "Safe" object equality, whereby IS_EQUAL(nil,nil) == YES
#define IS_EQUAL(x,y) ((x && [x isEqual:y]) || (!x && !y))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment