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 | enumerate_t = transducer_impl< detail::enumerate_rf_gen, T > |
|
|
template<typename IntegralT > |
constexpr auto | enumerate_from (IntegralT &&init) -> enumerate_t< estd::decay_t< IntegralT > > |
| Transducer that given a sequence: More...
|
|
|
const enumerate_t< std::size_t > | enumerate |
| Equivalent to enumerate_from(std::size_t{}) . More...
|
|