Skip to content

Instantly share code, notes, and snippets.

@federicoboerr
Created July 25, 2012 22:56
Show Gist options
  • Save federicoboerr/3179222 to your computer and use it in GitHub Desktop.
Save federicoboerr/3179222 to your computer and use it in GitHub Desktop.
3 if-else statements, one line
// 3 if-else statements, one line...
int size = type == "dynamic" ? value : type == "fixed 1" ? 1 : type == "fixed 2" ? 5 : 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment