MCPcopy
hub / github.com/google/mangle / maxInt

Function maxInt

factstore/interval_tree.go:341–346  ·  view source on GitHub ↗

max returns the maximum of two int64 values.

(a, b int64)

Source from the content-addressed store, hash-verified

339
340// max returns the maximum of two int64 values.
341func maxInt(a, b int64) int64 {
342 if a > b {
343 return a
344 }
345 return b
346}
347
348// Helper functions for interval time extraction
349

Callers 1

insertMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected