xyosc/vendor/github.com/chewxy/math32/signbit.go
2024-12-21 17:38:26 +01:00

7 lines
144 B
Go

package math32
// Signbit returns true if x is negative or negative zero.
func Signbit(x float32) bool {
return Float32bits(x)&(1<<31) != 0
}