Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MyInt (0.03 sec)

  1. doc/go_spec.html

    must be itself, and <code>T</code> cannot be an interface.
    </p>
    
    <pre>
    type MyInt int
    
    interface {
    	~[]byte  // the underlying type of []byte is itself
    	~MyInt   // illegal: the underlying type of MyInt is not MyInt
    	~error   // illegal: error is an interface
    }
    </pre>
    
    <p>
    Union elements denote unions of type sets:
    </p>
    
    <pre>
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top