#[unsafe(no_mangle)]pub unsafe extern "C" fn patch_seq_make_channel(stack: Stack) -> StackExpand description
Create a new channel.
Stack effect: ( – Channel )
Returns a Channel value that can be used with send/receive operations.
The channel can be duplicated (dup) to share between strands; each
clone shares the same underlying mpmc queue and closed flag.
§Safety
Always safe to call.