Skip to content

Instantly share code, notes, and snippets.

@suhininalex
Created October 25, 2017 19:29
Show Gist options
  • Save suhininalex/ef57fd18ee524910d53b09ec05b50e52 to your computer and use it in GitHub Desktop.
Save suhininalex/ef57fd18ee524910d53b09ec05b50e52 to your computer and use it in GitHub Desktop.
infix fun Int.clip(range: IntRange): Int {
return when {
this < range.start -> range.start
this > range.endInclusive -> range.endInclusive
else -> this
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment