Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printfloat (0.1 sec)

  1. doc/go1.17_spec.html

    <pre>
    switch i := x.(type) {
    case nil:
    	printString("x is nil")                // type of i is type of x (interface{})
    case int:
    	printInt(i)                            // type of i is int
    case float64:
    	printFloat64(i)                        // type of i is float64
    case func(int) float64:
    	printFunction(i)                       // type of i is func(int) float64
    case bool, string:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top