Skip to content

Commit a4860e7

Browse files
committed
P0013R1 Logical type traits
Optional pieces conditional on P0006R0 being applied.
1 parent e327f87 commit a4860e7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

source/utilities.tex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9316,8 +9316,11 @@
93169316

93179317
// \ref{meta.logical}, logical operator traits:
93189318
template<class... B> struct conjunction;
9319+
template<class... B> constexpr bool conjunction_v = conjunction<B...>::value;
93199320
template<class... B> struct disjunction;
9321+
template<class... B> constexpr bool disjunction_v = disjunction<B...>::value;
93209322
template<class B> struct negation;
9323+
template<class B> constexpr bool negation_v = negation<B>::value;
93219324
} // namespace std
93229325
\end{codeblock}
93239326

0 commit comments

Comments
 (0)