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 T > |
using | iter_t = transducer_impl< detail::iter_rf_gen, T > |
|
|
template<typename InputRangeT > |
constexpr auto | iter (InputRangeT &&r) -> iter_t< estd::decay_t< InputRangeT > > |
| Generator transducer produces the sequence passed as parameter, by iterating over it. More...
|
|
template<typename InputRangeT , typename... InputRangeTs> |
constexpr auto | iter (InputRangeT &&r, InputRangeTs &&...rs) -> decltype(comp(iter(std::forward< InputRangeT >(r)), iter(std::forward< InputRangeTs >(rs))...)) |
|