Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 8p4 (0.01 sec)

  1. src/math/big/ratconv_test.go

    	{"0x10/1", "16", true},
    	{"0x10/0x20", "1/2", true},
    
    	{"0010", "10", true}, // 0-prefix is ignored in this case (not a fraction)
    	{"0x10.0", "16", true},
    	{"0x1.8", "3/2", true},
    	{"0X1.8p4", "24", true},
    	{"0x1.1E2", "2289/2048", true}, // E is part of hex mantissa, not exponent
    	{"0b1.1E2", "150", true},
    	{"0B1.1P3", "12", true},
    	{"0o10e-2", "2/25", true},
    	{"0O10p-3", "1", true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top