MCPcopy Create free account
hub / github.com/LanceLRQ/deer-executor / Max

Function Max

executor/utils.go:15–20  ·  view source on GitHub ↗

Max find max between x & y

(x, y int64)

Source from the content-addressed store, hash-verified

13
14// Max find max between x & y
15func Max(x, y int64) int64 {
16 if x > y {
17 return x
18 }
19 return y
20}
21
22// Max32 find max between a & b
23func Max32(a, b int) int {

Callers 1

charDiffIoUtilFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected