JeffGarland / liaw2019-process

Repository for initial drafting of boost.process standards paper
MIT License
5 stars 4 forks source link

async_pipe still refers to Networking TS buffer concepts #43

Closed JeffGarland closed 4 years ago

JeffGarland commented 4 years ago

@eliaskosunen I think we want these now to be span correct?

  // Read some data from the handle.
    // See the Networking TS for more details.
    template<class MutableBufferSequence>
    size_t read_some(const MutableBufferSequence& buffers);

and so on...

eliaskosunen commented 4 years ago

MutableBufferSequence is a span<span<byte>>

JeffGarland commented 4 years ago

ok. So clearly we could just define that locally ` using mutable_bufffer_sequence = span<span>;

` but I guess we still have network TS references with ReadHandler