Skip to content

Instantly share code, notes, and snippets.

@wuqian
Created March 31, 2014 06:13
Show Gist options
  • Save wuqian/9886280 to your computer and use it in GitHub Desktop.
Save wuqian/9886280 to your computer and use it in GitHub Desktop.
clamp
private final static int clamp(int x, int low, int high) {
return (x < low) ? low : ((x > high) ? high : x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment