CollectDelegate

A Stream is anything that has a .collect function that accepts a callable and returns a Sender. Once the Sender is connected and started the Stream will call the callable zero or more times before one of the three terminal functions of the Receiver is called.

Members

Aliases

CollectDelegate
alias CollectDelegate = void delegate() @(safe) shared
Undocumented in source.
CollectDelegate
alias CollectDelegate = void delegate(ElementType) @(safe) shared
Undocumented in source.

Meta