Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ftoatests (0.08 sec)

  1. src/math/all_test.go

    // and have right value (assumes strconv.ParseFloat works).
    // https://golang.org/issue/201
    
    type floatTest struct {
    	val  any
    	name string
    	str  string
    }
    
    var floatTests = []floatTest{
    	{float64(MaxFloat64), "MaxFloat64", "1.7976931348623157e+308"},
    	{float64(SmallestNonzeroFloat64), "SmallestNonzeroFloat64", "5e-324"},
    	{float32(MaxFloat32), "MaxFloat32", "3.4028235e+38"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top