Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 122 of 122 for joining (0.1 sec)

  1. doc/go_spec.html

    <p>
    The built-in function <code>new</code> takes a type <code>T</code>,
    allocates storage for a <a href="#Variables">variable</a> of that type
    at run time, and returns a value of type <code>*T</code>
    <a href="#Pointer_types">pointing</a> to it.
    The variable is initialized as described in the section on
    <a href="#The_zero_value">initial values</a>.
    </p>
    
    <pre class="grammar">
    new(T)
    </pre>
    
    <p>
    For instance
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0.zip

    aligned reports whether dst, x, and y are all word-aligned pointers. func aligned(dst, x, y *byte) bool { return (uintptr(unsafe.Pointer(dst))|uintptr(unsafe.Pointer(x))|uintptr(unsafe.Pointer(y)))&(wordSize-1) == 0 } // words returns a []uintptr pointing at the same data as x, // with any trailing partial word removed. func words(x []byte) []uintptr { n := uintptr(len(x)) / wordSize if n == 0 { // Avoid creating a *uintptr that refers to data smaller than a uintptr; // see issue 59334. return nil...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top