Source File
logb.go
Belonging Package
math
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package math
// Logb returns the binary exponent of x.
//
// Special cases are:
//
// Logb(±Inf) = +Inf
// Logb(0) = -Inf
// Logb(NaN) = NaN
func ( float64) float64 {
// special cases
switch {
case == 0:
return Inf(-1)
case IsInf(, 0):
return Inf(1)
case IsNaN():
return
}
return float64(ilogb())
}
// Ilogb returns the binary exponent of x as an integer.
//
// Special cases are:
//
// Ilogb(±Inf) = MaxInt32
// Ilogb(0) = MinInt32
// Ilogb(NaN) = MaxInt32
func ( float64) int {
// special cases
switch {
case == 0:
return MinInt32
case IsNaN():
return MaxInt32
case IsInf(, 0):
return MaxInt32
}
return ilogb()
}
// ilogb returns the binary exponent of x. It assumes x is finite and
// non-zero.
func ilogb( float64) int {
, := normalize()
return int((Float64bits()>>shift)&mask) - bias +
}
The pages are generated with Golds v0.7.0-preview. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |