Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for renamedComplex128 (0.3 sec)

  1. src/fmt/fmt_test.go

    	// %T
    	{"%T", byte(0), "uint8"},
    	{"%T", reflect.ValueOf(nil), "reflect.Value"},
    	{"%T", (4 - 3i), "complex128"},
    	{"%T", renamedComplex128(4 - 3i), "fmt_test.renamedComplex128"},
    	{"%T", intVar, "int"},
    	{"%6T", &intVar, "  *int"},
    	{"%10T", nil, "     <nil>"},
    	{"%-10T", nil, "<nil>     "},
    
    	// %p with pointers
    	{"%p", (*int)(nil), "0x0"},
    	{"%#p", (*int)(nil), "0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top