template <typename... Ts>
struct conjunction
Defined at line 133 of file ../../third_party/abseil-cpp/absl/meta/type_traits.h
conjunction
Performs a compile-time logical AND operation on the passed types (which
must have `::value` members convertible to `bool`. Short-circuits if it
encounters any `false` members (and does not compare the `::value` members
of any remaining arguments).
This metafunction is designed to be a drop-in replacement for the C++17
`std::conjunction` metafunction.