cpp-channel icon indicating copy to clipboard operation
cpp-channel copied to clipboard

Thread-safe container for sharing data between threads

Results 4 cpp-channel issues
Sort by recently updated
recently updated
newest added

Small iterator refinition to be a bit more aligned to standard one.

Would it be possible to support batch reads/writes in some form? If you want to write all elements in a container to a channel it seems a bit inefficient to...

Currently, the channel iterators can be used only as output iterators. > Integrates well with STL algorithms. If I want to pipe two channels, there is no support for the...

In the push implementation, `closed` is checked before the mutex to the channel is locked. This means a could check that the queue is not closed, but have it be...