Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Crooks (0.22 sec)

  1. doc/go1.17_spec.html

    <p>
    A "select" statement chooses which of a set of possible
    <a href="#Send_statements">send</a> or
    <a href="#Receive_operator">receive</a>
    operations will proceed.
    It looks similar to a
    <a href="#Switch_statements">"switch"</a> statement but with the
    cases all referring to communication operations.
    </p>
    
    <pre class="ebnf">
    SelectStmt = "select" "{" { CommClause } "}" .
    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)
  2. doc/asm.html

    The <code>get_tls</code> macro takes one argument, which is the register to load the
    <code>g</code> pointer into.
    </p>
    
    <p>
    For example, the sequence to load <code>g</code> and <code>m</code>
    using <code>CX</code> looks like this:
    </p>
    
    <pre>
    #include "go_tls.h"
    #include "go_asm.h"
    ...
    get_tls(CX)
    MOVL	g(CX), AX     // Move g into AX.
    MOVL	g_m(AX), BX   // Move g.m into BX.
    </pre>
    
    <p>
    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)
  3. doc/go_spec.html

    </pre>
    
    <h3 id="Type_parameter_declarations">Type parameter declarations</h3>
    
    <p>
    A type parameter list declares the <i>type parameters</i> of a generic function or type declaration.
    The type parameter list looks like an ordinary <a href="#Function_types">function parameter list</a>
    except that the type parameter names must all be present and the list is enclosed
    in square brackets rather than parentheses
    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)
Back to top