xyosc/vendor/github.com/chewxy/math32/signbit.go

7 lines
144 B
Go
Raw Normal View History

2024-12-21 17:38:26 +01:00
package math32
// Signbit returns true if x is negative or negative zero.
func Signbit(x float32) bool {
return Float32bits(x)&(1<<31) != 0
}