conduit icon indicating copy to clipboard operation
conduit copied to clipboard

High Performance Streams Based on Coroutine TS ⚡

Results 12 conduit issues
Sort by recently updated
recently updated
newest added

Example: ```c++ auto pingPong = [](int x) -> reactor { while(1) { x = co_yield x; } }; int main() { auto actor = pingPong(1); auto value = 0; while(...

enhancement

Sort can be implemented via scan by performing an inserting incoming elements into a vector. To find the right position to insert can be found using a binary search. This...

good first issue