Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unmatched (0.59 sec)

  1. doc/go_mem.html

    communication to establish a relative ordering.
    </p>
    
    <h3 id="chan">Channel communication</h3>
    
    <p>
    Channel communication is the main method of synchronization
    between goroutines.  Each send on a particular channel
    is matched to a corresponding receive from that channel,
    usually in a different goroutine.
    </p>
    
    <p class="rule">
    A send on a channel is synchronized before the completion of the
    corresponding receive from that channel.
    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/go_spec.html

    Similarly, type inference uses the fact that a type argument must
    <a href="#Satisfying_a_type_constraint">satisfy</a> the constraint of its respective
    type parameter.
    </p>
    
    <p>
    Each such pair of matched types corresponds to a <i>type equation</i> containing
    one or multiple type parameters, from one or possibly multiple generic functions.
    Inferring the missing type arguments means solving the resulting set of type
    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