Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for generic (0.22 sec)

  1. doc/go1.22.html

    There are also new top-level functions and methods
    <code>Uint32</code>,
    <code>Uint32N</code>,
    <code>Uint64</code>,
    <code>Uint64N</code>,
    <code>Uint</code>,
    and
    <code>UintN</code>.
    
    <li>The
    new generic function <a href="/pkg/math/rand/v2/#N"><code>N</code></a>
    is like
    <a href="/pkg/math/rand/v2/#Int64N"><code>Int64N</code></a> or
    <a href="/pkg/math/rand/v2/#Uint64N"><code>Uint64N</code></a>
    but works for any integer type.
    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_mem.html

    </p>
    
    <h3 id="overview">Informal Overview</h3>
    
    <p>
    Go approaches its memory model in much the same way as the rest of the language,
    aiming to keep the semantics simple, understandable, and useful.
    This section gives a general overview of the approach and should suffice for most programmers.
    The memory model is specified more formally in the next section.
    </p>
    
    <p>
    A data race is defined as
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    Type equations are always solved for the bound type parameters only.
    </p>
    
    <p>
    Type inference supports calls of generic functions and assignments
    of generic functions to (explicitly function-typed) variables.
    This includes passing generic functions as arguments to other
    (possibly also generic) functions, and returning generic functions
    as results.
    Type inference operates on a set of equations specific to each of
    these cases.
    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)
  4. doc/go1.17_spec.html

    language version 1.17, in October 2021, before the introduction of generics.
    It is provided for historical interest.
    The current reference manual can be found <a href="/doc/go_spec.html">here</a>.
    For more information and other documents, see <a href="/">go.dev</a>.
    </p>
    
    <p>
    Go is a general-purpose language designed with systems programming
    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)
  5. doc/asm.html

    what the toolchain actually generates for that operation might
    not be a move instruction at all, perhaps a clear or load.
    Or it might correspond exactly to the machine instruction with that name.
    In general, machine-specific operations tend to appear as themselves, while more general concepts like
    memory move and subroutine call and return are more abstract.
    The details vary with architecture, and we apologize for the imprecision; the situation is not well-defined.
    </p>
    
    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