Fuzion Logo
fuzion-lang.dev — The Fuzion Language Portal
JavaScript seems to be disabled. Functionality is limited.

infix <-

concur.Sending_Channel.infix <-

(to T)
 => 
unit
[Abstract feature]
send a value to this Channel.

The channel must be open. Sending a value to a closed channel will cause a panic,
either immediately or if it closed while we block on a full channel.

In case the Channel is full, the attempt to send data will block until the Channel
is no longer full or closed.
Precondition
pre
  (safety : !is_closed) || panic "send to closed Channel $T"
0.098dev (GIT hash b44352b4c68decbc58a097b291a1c8f3a5a05486)
last changed: 2026-07-03