mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
11 lines
136 B
Go
11 lines
136 B
Go
package obiutils
|
|
|
|
import "golang.org/x/exp/constraints"
|
|
|
|
func Abs[T constraints.Signed](x T) T {
|
|
if x < 0 {
|
|
return -x
|
|
}
|
|
return x
|
|
}
|