_std::conjunction
_/_std::disjunction
_で正しく実行できず、より「基本的な」(つまり、ライブラリー機能ではなく言語機能)折りたたみ式を_&&
_/_||
_?
例:
_// func is enabled if all Ts... have the same type
template<typename T, typename... Ts>
std::enable_if_t<std::conjunction_v<std::is_same<T, Ts>...> >
func(T, Ts...) {
// TODO something to show
}
_
対
_// func is enabled if all Ts... have the same type
template<typename T, typename... Ts>
std::enable_if_t<(std::is_same<T, Ts> &&...)>
func(T, Ts...) {
// TODO something to show
}
_
Fold式を使用したバージョンは、より簡潔で一般的に読みやすくなっています(ただし、意見は異なる場合があります)。だから、それがフォールド式と一緒にライブラリに追加された理由がわかりません。
_std::conjunction
_は_::value
_インスタンス化を短絡しますが、フォールド式はインスタンス化しません。これは、次のことを意味します。
_template <typename T>
struct valid_except_void : std::false_type { };
template <>
struct valid_except_void<void> { };
_
以下がコンパイルされます:
_template <typename... Ts>
constexpr auto test = std::conjunction_v<valid_except_void<Ts>...>;
constexpr auto inst = test<int, void>;
_
ただし、次のことはできません。
_template <typename... Ts>
constexpr auto test = (valid_except_void<Ts>::value && ...);
constexpr auto inst = test<int, void>;
_
From cppreference :
結合は短絡的です:テンプレートタイプの引数
Bi
がbool(Bi::value) == false
である場合、_conjunction<B1, ..., BN>::value
_のインスタンス化は_Bj::value
_のインスタンス化を必要としません_j > i
_。