Skip to content

Channel

Import: std/channel.axs


FunctionSignatureReturn Type
chan_new(capacity: i64)i64
chan_send(ch: i64, value: i64)void
chan_recv(ch: i64)i64
chan_try_send(ch: i64, value: i64)i64
chan_len(ch: i64)i64
chan_close(ch: i64)void
chan_free(ch: i64)void
chan_new(capacity: i64) → i64
chan_send(ch: i64, value: i64) → void
chan_recv(ch: i64) → i64
chan_try_send(ch: i64, value: i64) → i64
chan_len(ch: i64) → i64
chan_close(ch: i64) → void
chan_free(ch: i64) → void

These are private C/system function bindings used internally by the module.

SymbolParametersReturn Type
rt_chan_newi64i64
rt_chan_sendi64, i64void
rt_chan_recvi64i64
rt_chan_try_sendi64, i64i64
rt_chan_leni64i64
rt_chan_closei64void
rt_chan_freei64void

Auto-generated from std/channel.axs by scripts/gen_docs.sh