Skip to content

Instantly share code, notes, and snippets.

@hirohitokato
Created November 20, 2012 02:36
Show Gist options
  • Save hirohitokato/4115565 to your computer and use it in GitHub Desktop.
Save hirohitokato/4115565 to your computer and use it in GitHub Desktop.
C11の新機能によるNSNumber用マクロ
#define N(x) _Generic((x), \
int: [NSNumber numberWithInt: x], \
float: [NSNumber numberWithFloat: x], \
double: [NSNumber numberWithDouble: x])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment