func math.Signbit
14 uses
math (current package)
atan2.go#L37: if x >= 0 && !Signbit(x) {
dim.go#L45: if Signbit(x) {
dim.go#L72: if Signbit(x) {
gamma.go#L139: if Signbit(x) {
signbit.go#L8: func Signbit(x float64) bool {
math/big
float.go#L552: z.neg = math.Signbit(x) // handle -0, -Inf correctly
github.com/evanw/esbuild/internal/js_parser
js_parser.go#L9317: if e.Value == 0 && math.Signbit(e.Value) {
js_parser.go#L9573: if math.Signbit(f) {
github.com/evanw/esbuild/internal/js_printer
js_printer.go#L1893: if !math.Signbit(value) {
google.golang.org/protobuf/internal/impl
codec_gen.go#L3694: if v == 0 && !math.Signbit(float64(v)) {
codec_gen.go#L3704: if v == 0 && !math.Signbit(float64(v)) {
codec_gen.go#L4642: if v == 0 && !math.Signbit(float64(v)) {
codec_gen.go#L4652: if v == 0 && !math.Signbit(float64(v)) {
message_reflect_field.go#L256: return rv.Float() != 0 || math.Signbit(rv.Float())
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |