Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for MaxFloat64 (0.16 sec)

  1. src/reflect/value.go

    		return false
    	}
    	panic(&ValueError{"reflect.Value.OverflowFloat", v.kind()})
    }
    
    func overflowFloat32(x float64) bool {
    	if x < 0 {
    		x = -x
    	}
    	return math.MaxFloat32 < x && x <= math.MaxFloat64
    }
    
    // OverflowInt reports whether the int64 x cannot be represented by v's type.
    // It panics if v's Kind is not [Int], [Int8], [Int16], [Int32], or [Int64].
    func (v Value) OverflowInt(x int64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Log10", Func, 0},
    		{"Log10E", Const, 0},
    		{"Log1p", Func, 0},
    		{"Log2", Func, 0},
    		{"Log2E", Const, 0},
    		{"Logb", Func, 0},
    		{"Max", Func, 0},
    		{"MaxFloat32", Const, 0},
    		{"MaxFloat64", Const, 0},
    		{"MaxInt", Const, 17},
    		{"MaxInt16", Const, 0},
    		{"MaxInt32", Const, 0},
    		{"MaxInt64", Const, 0},
    		{"MaxInt8", Const, 0},
    		{"MaxUint", Const, 17},
    		{"MaxUint16", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top