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 , typename InSeparatorT , typename ArgSeparatorT > |
using | write_t = transducer_impl< detail::write_rf_gen, OutputStreamRefT, InSeparatorT, ArgSeparatorT > |
|
|
template<typename OutputStreamT , typename InSeparatorT = detail::empty_output> |
auto | write (OutputStreamT &stream, InSeparatorT in_sep=InSeparatorT{}) -> write_t< std::reference_wrapper< OutputStreamT >, InSeparatorT, InSeparatorT > |
| Transducer that writes the into a given stream using the operator << . More...
|
|
template<typename OutputStreamT , typename InSeparatorT , typename ArgSeparatorT > |
auto | write (OutputStreamT &stream, InSeparatorT in_sep, ArgSeparatorT arg_sep) -> write_t< std::reference_wrapper< OutputStreamT >, InSeparatorT, ArgSeparatorT > |
|