MCPcopy Index your code
hub / github.com/GregTech6/gregtech6 / bind

Method bind

src/main/java/gregapi/util/UT.java:1544–1546  ·  view source on GitHub ↗
(long aMin, long aMax, long aBoundValue)

Source from the content-addressed store, hash-verified

1542 }
1543
1544 public static long bind(long aMin, long aMax, long aBoundValue) {
1545 return aMin > aMax ? Math.max(aMax, Math.min(aMin, aBoundValue)) : Math.max(aMin, Math.min(aMax, aBoundValue));
1546 }
1547 public static long bind_(long aMin, long aMax, long aBoundValue) {
1548 return Math.max(aMin, Math.min(aMax, aBoundValue));
1549 }

Callers 15

onCheckSpawnEventMethod · 0.80
getBurnTimeMethod · 0.80
func_151367_bMethod · 0.80
func_151367_bMethod · 0.80
func_151367_bMethod · 0.80
dischargeMethod · 0.80
setAggressivenessMethod · 0.80
setWorkForceMethod · 0.80
setLifeSpanMethod · 0.80
getAggressivenessMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected