#ifndef TYPEASVALUE_SRC_LIST_OPERATION_REVERSE_H_ #define TYPEASVALUE_SRC_LIST_OPERATION_REVERSE_H_ #include "append.h" #include "higher/fold.h" namespace tav { template class Reverse { private: template < typename Current, typename Previous > using reversed_append = Append< Previous, Eval> >; public: typedef Eval> type; }; } #endif // TYPEASVALUE_SRC_LIST_OPERATION_REVERSE_H_