#include <atria/xform/transducer_impl.hpp>
#include <functional>
#include <iterator>
#include <ios>
Go to the source code of this file.
|
| atria |
| C++ amazing templates and reusable implementations awesomeness.
|
|
| atria::xform |
| Efficient and flexible C++ implementation of transducers.
|
|
|
template<typename OutputStreamRefT > |
using | writebuf_t = transducer_impl< detail::writebuf_rf_gen, OutputStreamRefT > |
|
|
template<typename OutputStreamT > |
auto | writebuf (OutputStreamT &stream) -> writebuf_t< std::reference_wrapper< OutputStreamT > > |
| Generator transducer that reads buffers of size N from stream , and passes them into the sequence. More...
|
|