signbit.go 489 B

12345678910111213141516
  1. // Copyright 2010 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Copyright ©2017 The Gonum Authors. All rights reserved.
  5. // Use of this source code is governed by a BSD-style
  6. // license that can be found in the LICENSE file.
  7. package math32
  8. import "math"
  9. // Signbit returns true if x is negative or negative zero.
  10. func Signbit(x float32) bool {
  11. return math.Float32bits(x)&(1<<31) != 0
  12. }