max returns the maximum of two int64 values.
(a, b int64)
| 339 | |
| 340 | // max returns the maximum of two int64 values. |
| 341 | func 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 |