2016-07-24 8 views

答えて

4

使用可変引数tempateエイリアスやパラメータパック拡張:

template<typename... Types> 
using fixed_tuple = std::tuple< std::pair<fixed_t, Types>... >; 

Live example.

関連する問題