Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for apply (0.28 sec)

  1. doc/go_mem.html

    a Go compiler sharing a back end with a C/C++ compiler must take care
    to disable optimizations that are invalid for Go.
    </p>
    
    <p>
    Note that the prohibition on introducing data races
    does not apply if the compiler can prove that the races
    do not affect correct execution on the target platform.
    For example, on essentially all CPUs, it is valid to rewrite
    </p>
    
    <pre>
    n := 0
    for i := 0; i < m; i++ {
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.22.html

      readability of various sub-pages.
      The web UI now supports exploring traces in a thread-oriented view.
      The trace viewer also now displays the full duration of all system calls.
      <br />
      These improvements only apply for viewing traces produced by programs built with
      Go 1.22 or newer.
      A future release will bring some of these improvements to traces produced by older
      version of Go.
    </p>
    
    <h3 id="vet">Vet</h3>
    
    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/go_spec.html

    </p>
    
    <pre>
    func apply[S ~[]E, E any](s S, f func(E) E) S { … }
    
    f0 := apply[]                  // illegal: type argument list cannot be empty
    f1 := apply[[]int]             // type argument for S explicitly provided, type argument for E inferred
    f2 := apply[[]string, string]  // both type arguments explicitly provided
    
    var bytes []byte
    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)
  4. doc/go1.17_spec.html

    <p>
    Arithmetic operators apply to numeric values and yield a result of the same
    type as the first operand. The four standard arithmetic operators (<code>+</code>,
    <code>-</code>, <code>*</code>, <code>/</code>) apply to integer,
    floating-point, and complex types; <code>+</code> also applies to strings.
    The bitwise logical and shift operators apply to integers only.
    </p>
    
    <pre class="grammar">
    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)
  5. doc/asm.html

    The current document provides a summary of the syntax and the differences with
    what is explained in that document, and
    describes the peculiarities that apply when writing assembly code to interact with Go.
    </p>
    
    <p>
    The most important thing to know about Go's assembler is that it is not a direct representation of the underlying machine.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top