#ifndef TYPEASVALUE_SRC_LIST_OPERATION_LENGTH_H_ #define TYPEASVALUE_SRC_LIST_OPERATION_LENGTH_H_ #include "higher/fold.h" #include "operation/math.h" namespace tav { namespace detail { template using length_accumulate = Add, Accumulated>; } template using Length = Fold, List>; } #endif // TYPEASVALUE_SRC_LIST_OPERATION_LENGTH_H_