Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for V2 (0.16 sec)

  1. doc/go1.22.html

    <h3 id="math_rand_v2">New math/rand/v2 package</h3>
    
    <!-- CL 502495 -->
    <!-- CL 502497 -->
    <!-- CL 502498 -->
    <!-- CL 502499 -->
    <!-- CL 502500 -->
    <!-- CL 502505 -->
    <!-- CL 502506 -->
    <!-- CL 516857 -->
    <!-- CL 516859 -->
    
    <p>
      Go 1.22 includes the first “v2” package in the standard library,
      <a href="/pkg/math/rand/v2/"><code>math/rand/v2</code></a>.
    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)
  2. doc/go_spec.html

    with the precision of that type argument. For example, given the function:
    </p>
    
    <pre>
    func dotProduct[F ~float32|~float64](v1, v2 []F) F {
    	var s F
    	for i, x := range v1 {
    		y := v2[i]
    		s += x * y
    	}
    	return s
    }
    </pre>
    
    <p>
    the product <code>x * y</code> and the addition <code>s += x * y</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)
  3. doc/go1.17_spec.html

    immediately, yielding the element type's <a href="#The_zero_value">zero value</a>
    after any previously sent values have been received.
    </p>
    
    <pre>
    v1 := &lt;-ch
    v2 = &lt;-ch
    f(&lt;-ch)
    &lt;-strobe  // wait until clock pulse and discard received value
    </pre>
    
    <p>
    A receive expression used in an <a href="#Assignments">assignment</a> or initialization of the special form
    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)
  4. doc/asm.html

    </p>
    
    <p>
    If a vector instruction takes a length or an index as an argument then it will be the
    first argument.
    For example, <code>VLEIF</code> <code>$1,</code> <code>$16,</code> <code>V2</code> will load
    the value sixteen into index one of <code>V2</code>.
    Care should be taken when using vector instructions to ensure that they are available at
    runtime.
    To use vector instructions a machine must have both the vector facility (bit 129 in the
    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)
Back to top