iter.hpp File Reference

Go to the source code of this file.

Namespaces

 atria
 C++ amazing templates and reusable implementations awesomeness.
 
 atria::xform
 Efficient and flexible C++ implementation of transducers.
 

Typedefs

template<typename T >
using iter_t = transducer_impl< detail::iter_rf_gen, T >
 

Functions

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))...))
 
Fork me on GitHub