pipes icon indicating copy to clipboard operation
pipes copied to clipboard

Seems like the simplest case isn't working here!

Open mycpuorg opened this issue 2 years ago • 0 comments

I love the idea of this library. I would prefer to use it but the following simple usecase fails in unexpected ways:

pipes::mux(tags, res) >>= pipes::filter([&](auto t, auto r) { return (t == 'b');})
       >>= pipes::unzip(pipes::push_back(bs), pipes::push_back(rs));

Godbolt Link here

mycpuorg avatar Jul 26 '22 07:07 mycpuorg