combine
The function template combine takes a Source/Sink pair or an InputFilter/OutputFilter pair and returns a Filter or Device with i/o mode bidirectional that performs input using the first member of the pair and output using the second member of the pair.
<boost/iostreams/combine.hpp>namespace boost { namespace iostreams { template<typename In, typename Out> implementation-defined combine(const In& in, const Out& out); } } // End namespace boost::io
Revised 20 May, 2004
© Copyright Jonathan Turkanis, 2004
Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)