Right now I'm doing a partial check, with static_assert
, that the input arguments are really std::tuple
s. Would you recommend using SFINAE like in this post ? However, for that I would need thatstd::enable_if
works with automatic return type deduction.
Right now I'm doing a partial check, with static_assert
, that the input arguments are really std::tuple
s. Would you recommend using SFINAE like in this post ? However, for that I would need thatstd::enable_if
works with automatic return type deduction.