MCPcopy Create free account
hub / github.com/apache/openwhisk-cli / max

Function max

commands/util.go:1058–1063  ·  view source on GitHub ↗
(a int, b int)

Source from the content-addressed store, hash-verified

1056}
1057
1058func max(a int, b int) int {
1059 if a > b {
1060 return a
1061 }
1062 return b
1063}
1064
1065func min(a int, b int) int {
1066 if a < b {

Callers 2

activation.goFile · 0.85
api.goFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected