Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Conlay (6.82 sec)

  1. doc/go_spec.html

    otherwise it is <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignment_statements">assignment</a> or
    explicit <a href="#Conversions">conversion</a>.
    </p>
    
    <pre>
    chan T          // can be used to send and receive values of type T
    chan&lt;- float64  // can only be used to send float64s
    &lt;-chan int      // can only be used to receive ints
    </pre>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top