#ifndef TYPEASVALUE_SRC_LIST_OPERATION_BASIC_H_ #define TYPEASVALUE_SRC_LIST_OPERATION_BASIC_H_ #include "higher/fold.h" #include "operation/math.h" namespace tav { namespace detail { template class Length { private: template using accumulate = Add, Accumulated>; public: typedef tav::Fold, List> type; }; } template using Length = Eval>; } #endif // TYPEASVALUE_SRC_LIST_OPERATION_BASIC_H_