Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Meyers (0.19 sec)

  1. doc/go1.17_spec.html

    variables, only on lexical <i>references</i> to them in the source,
    analyzed transitively. For instance, if a variable <code>x</code>'s
    initialization expression refers to a function whose body refers to
    variable <code>y</code> then <code>x</code> depends on <code>y</code>.
    Specifically:
    </p>
    
    <ul>
    <li>
    A reference to a variable or function is an identifier denoting that
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    type T1[P T1[P]] …                    // illegal: T1 refers to itself
    type T2[P interface{ T2[int] }] …     // illegal: T2 refers to itself
    type T3[P interface{ m(T3[int])}] …   // illegal: T3 refers to itself
    type T4[P T5[P]] …                    // illegal: T4 refers to T5 and
    type T5[P T4[P]] …                    //          T5 refers to T4
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top