Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Meyers (0.2 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 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go1.22.html

      no values to be appended to the slice, such as <code>slice = append(slice)</code>.
      Such a statement has no effect, and experience has shown that is nearly always a mistake.
    </p>
    
    <h4 id="vet-defers">New warnings for deferring <code>time.Since</code></h4>
    
    <p><!-- CL 527095, https://go.dev/issue/60048: time.Since should not be used in defer statement -->
      The vet tool now reports a non-deferred call to
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  3. doc/asm.html

    references to the virtual stack pointer from references to the architectural
    <code>SP</code> register.
    That is, <code>x-8(SP)</code> and <code>-8(SP)</code>
    are different memory locations:
    the first refers to the virtual stack pointer pseudo-register,
    while the second refers to the
    hardware's <code>SP</code> register.
    </p>
    
    <p>
    On machines where <code>SP</code> and <code>PC</code> are
    traditionally aliases for a physical, numbered register,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. 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 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top