Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for B1 (0.15 sec)

  1. doc/go1.17_spec.html

    <pre>
    type (
    	A1 = string
    	A2 = A1
    )
    
    type (
    	B1 string
    	B2 B1
    	B3 []B1
    	B4 B3
    )
    </pre>
    
    <p>
    The underlying type of <code>string</code>, <code>A1</code>, <code>A2</code>, <code>B1</code>,
    and <code>B2</code> is <code>string</code>.
    The underlying type of <code>[]B1</code>, <code>B3</code>, and <code>B4</code> is <code>[]B1</code>.
    </p>
    
    <h3 id="Method_sets">Method sets</h3>
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	A2 = A1
    )
    
    type (
    	B1 string
    	B2 B1
    	B3 []B1
    	B4 B3
    )
    
    func f[P any](x P) { … }
    </pre>
    
    <p>
    The underlying type of <code>string</code>, <code>A1</code>, <code>A2</code>, <code>B1</code>,
    and <code>B2</code> is <code>string</code>.
    The underlying type of <code>[]B1</code>, <code>B3</code>, and <code>B4</code> is <code>[]B1</code>.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top