Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for float64NegInf (0.13 sec)

  1. src/runtime/histogram.go

    }
    
    const (
    	fInf    = 0x7FF0000000000000
    	fNegInf = 0xFFF0000000000000
    )
    
    func float64Inf() float64 {
    	inf := uint64(fInf)
    	return *(*float64)(unsafe.Pointer(&inf))
    }
    
    func float64NegInf() float64 {
    	inf := uint64(fNegInf)
    	return *(*float64)(unsafe.Pointer(&inf))
    }
    
    // timeHistogramMetricsBuckets generates a slice of boundaries for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top