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 T1 , typename T2 > |
using | interpose_t = transducer_impl< detail::interpose_rf_gen, T1, T2 > |
|
|
template<typename... ValueTs> |
constexpr auto | interpose (ValueTs &&...xs) -> interpose_t< estd::make_index_sequence< sizeof...(ValueTs)>, std::tuple< estd::decay_t< ValueTs >... > > |
| Like clojure.core/interpose$1. More...
|
|