MCPcopy Create free account
hub / github.com/MertJSX/folderhost / Clamp

Function Clamp

utils/clamp.go:3–11  ·  view source on GitHub ↗
(value, min, max int)

Source from the content-addressed store, hash-verified

1package utils
2
3func Clamp(value, min, max int) int {
4 if value < min {
5 return min
6 }
7 if value > max {
8 return max
9 }
10 return value
11}

Callers 2

applyDeleteFunction · 0.92
applyReplaceFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected