Add in.go

This commit is contained in:
Howl 2016-05-28 17:30:18 +02:00
parent 0fcb1cc391
commit db323908ac
1 changed files with 13 additions and 0 deletions

13
common/in.go Normal file
View File

@ -0,0 +1,13 @@
package common
// In picks x if y < x, picks z if y > z, or if none of the previous
// conditions is satisfies, it simply picks y.
func In(x, y, z int) {
switch {
case y < x:
return x
case y > z:
return z
}
return y
}