Add generic safe math operations

Provides overflow/underflow protected Add, Sub, Mul operations
with generic constraints for all unsigned integer types.
This commit is contained in:
Zach Kelling
2025-12-19 08:45:58 -08:00
parent 8015ec9f82
commit 83bf9799d5
+61
View File
@@ -0,0 +1,61 @@
// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package math
import (
"errors"
"golang.org/x/exp/constraints"
)
var (
ErrOverflow = errors.New("overflow")
ErrUnderflow = errors.New("underflow")
// Deprecated: Add64 is deprecated. Use Add[uint64] instead.
Add64 = Add[uint64]
// Deprecated: Mul64 is deprecated. Use Mul[uint64] instead.
Mul64 = Mul[uint64]
)
// MaxUint returns the maximum value of an unsigned integer of type T.
func MaxUint[T constraints.Unsigned]() T {
return ^T(0)
}
// Add returns:
// 1) a + b
// 2) If there is overflow, an error
func Add[T constraints.Unsigned](a, b T) (T, error) {
if a > MaxUint[T]()-b {
return 0, ErrOverflow
}
return a + b, nil
}
// Sub returns:
// 1) a - b
// 2) If there is underflow, an error
func Sub[T constraints.Unsigned](a, b T) (T, error) {
if a < b {
return 0, ErrUnderflow
}
return a - b, nil
}
// Mul returns:
// 1) a * b
// 2) If there is overflow, an error
func Mul[T constraints.Unsigned](a, b T) (T, error) {
if b != 0 && a > MaxUint[T]()/b {
return 0, ErrOverflow
}
return a * b, nil
}
// AbsDiff returns the absolute difference between a and b.
func AbsDiff[T constraints.Unsigned](a, b T) T {
return max(a, b) - min(a, b)
}