add cubic implementation ported from chrome

This commit is contained in:
Lucas Clemente 2016-04-23 15:59:33 +02:00
parent 50d38eac39
commit c72c9336b0
4 changed files with 377 additions and 0 deletions

View file

@ -139,6 +139,14 @@ func Max(a, b int) int {
return a
}
// MaxUint64 returns the maximum of two uint64
func MaxUint64(a, b uint64) uint64 {
if a < b {
return b
}
return a
}
// Min returns the minimum of two Ints
func Min(a, b int) int {
if a < b {