Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bad40 (0.04 sec)

  1. doc/go_spec.html

    type Bad2 interface {
    	Bad1
    }
    
    // illegal: Bad3 may not embed a union containing Bad3
    type Bad3 interface {
    	~int | ~string | Bad3
    }
    
    // illegal: Bad4 may not embed an array containing Bad4 as element type
    type Bad4 interface {
    	[10]Bad4
    }
    </pre>
    
    <h4 id="Implementing_an_interface">Implementing an interface</h4>
    
    <p>
    A type <code>T</code> implements an interface <code>I</code> if
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top