Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ToTheMadness (0.09 sec)

  1. src/cmd/vet/testdata/print/print.go

    	var et4 errorTest4
    	et4.Error() // ok, not an error method.
    	var et5 errorTest5
    	et5.error() // ok, not an error method.
    	// Interfaces can be used with any verb.
    	var iface interface {
    		ToTheMadness() bool // Method ToTheMadness usually returns false
    	}
    	fmt.Printf("%f", iface) // ok: fmt treats interfaces as transparent and iface may well have a float concrete type
    	// Can't print a function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
Back to top