Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 39 additions & 39 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6971,9 +6971,9 @@
\constraints
\begin{itemize}
\item
\tcode{is_same_v<remove_cvref_t<Err>, unexpected>} is \tcode{false}; and
\tcode{is_same_v<remove_cvref_t<Err>, unexpected>} is \tcode{false},
\item
\tcode{is_same_v<remove_cvref_t<Err>, in_place_t>} is \tcode{false}; and
\tcode{is_same_v<remove_cvref_t<Err>, in_place_t>} is \tcode{false}, and
\item
\tcode{is_constructible_v<E, Err>} is \tcode{true}.
\end{itemize}
Expand Down Expand Up @@ -7473,31 +7473,31 @@
\constraints
\begin{itemize}
\item
\tcode{is_constructible_v<T, UF>} is \tcode{true}; and
\tcode{is_constructible_v<T, UF>} is \tcode{true},
\item
\tcode{is_constructible_v<E, GF>} is \tcode{true}; and
\tcode{is_constructible_v<E, GF>} is \tcode{true},
\item
\tcode{is_constructible_v<T, expected<U, G>\&>} is \tcode{false}; and
\tcode{is_constructible_v<T, expected<U, G>\&>} is \tcode{false},
\item
\tcode{is_constructible_v<T, expected<U, G>>} is \tcode{false}; and
\tcode{is_constructible_v<T, expected<U, G>>} is \tcode{false},
\item
\tcode{is_constructible_v<T, const expected<U, G>\&>} is \tcode{false}; and
\tcode{is_constructible_v<T, const expected<U, G>\&>} is \tcode{false},
\item
\tcode{is_constructible_v<T, const expected<U, G>>} is \tcode{false}; and
\tcode{is_constructible_v<T, const expected<U, G>>} is \tcode{false},
\item
\tcode{is_convertible_v<expected<U, G>\&, T>} is \tcode{false}; and
\tcode{is_convertible_v<expected<U, G>\&, T>} is \tcode{false},
\item
\tcode{is_convertible_v<expected<U, G>\&\&, T>} is \tcode{false}; and
\tcode{is_convertible_v<expected<U, G>\&\&, T>} is \tcode{false},
\item
\tcode{is_convertible_v<const expected<U, G>\&, T>} is \tcode{false}; and
\tcode{is_convertible_v<const expected<U, G>\&, T>} is \tcode{false},
\item
\tcode{is_convertible_v<const expected<U, G>\&\&, T>} is \tcode{false}; and
\tcode{is_convertible_v<const expected<U, G>\&\&, T>} is \tcode{false},
\item
\tcode{is_constructible_v<unexpected<E>, expected<U, G>\&>} is \tcode{false}; and
\tcode{is_constructible_v<unexpected<E>, expected<U, G>\&>} is \tcode{false},
\item
\tcode{is_constructible_v<unexpected<E>, expected<U, G>>} is \tcode{false}; and
\tcode{is_constructible_v<unexpected<E>, expected<U, G>>} is \tcode{false},
\item
\tcode{is_constructible_v<unexpected<E>, const expected<U, G>\&>} is \tcode{false}; and
\tcode{is_constructible_v<unexpected<E>, const expected<U, G>\&>} is \tcode{false}, and
\item
\tcode{is_constructible_v<unexpected<E>, const expected<U, G>>} is \tcode{false}.
\end{itemize}
Expand Down Expand Up @@ -7535,11 +7535,11 @@
\constraints
\begin{itemize}
\item
\tcode{is_same_v<remove_cvref_t<U>, in_place_t>} is \tcode{false}; and
\tcode{is_same_v<remove_cvref_t<U>, in_place_t>} is \tcode{false},
\item
\tcode{is_same_v<expected, remove_cvref_t<U>>} is \tcode{false}; and
\tcode{is_same_v<expected, remove_cvref_t<U>>} is \tcode{false},
\item
\tcode{remove_cvref_t<U>} is not a specialization of \tcode{unexpected}; and
\tcode{remove_cvref_t<U>} is not a specialization of \tcode{unexpected}, and
\item
\tcode{is_constructible_v<T, U>} is \tcode{true}.
\end{itemize}
Expand Down Expand Up @@ -7770,13 +7770,13 @@
This operator is defined as deleted unless:
\begin{itemize}
\item
\tcode{is_copy_assignable_v<T>} is \tcode{true} and
\tcode{is_copy_assignable_v<T>} is \tcode{true},
\item
\tcode{is_copy_constructible_v<T>} is \tcode{true} and
\tcode{is_copy_constructible_v<T>} is \tcode{true},
\item
\tcode{is_copy_assignable_v<E>} is \tcode{true} and
\tcode{is_copy_assignable_v<E>} is \tcode{true},
\item
\tcode{is_copy_constructible_v<E>} is \tcode{true} and
\tcode{is_copy_constructible_v<E>} is \tcode{true}, and
\item
\tcode{is_nothrow_move_constructible_v<T> || is_nothrow_move_constructible_v<E>}
is \tcode{true}.
Expand All @@ -7793,13 +7793,13 @@
\constraints
\begin{itemize}
\item
\tcode{is_move_constructible_v<T>} is \tcode{true} and
\tcode{is_move_constructible_v<T>} is \tcode{true},
\item
\tcode{is_move_assignable_v<T>} is \tcode{true} and
\tcode{is_move_assignable_v<T>} is \tcode{true},
\item
\tcode{is_move_constructible_v<E>} is \tcode{true} and
\tcode{is_move_constructible_v<E>} is \tcode{true},
\item
\tcode{is_move_assignable_v<E>} is \tcode{true} and
\tcode{is_move_assignable_v<E>} is \tcode{true}, and
\item
\tcode{is_nothrow_move_constructible_v<T> || is_nothrow_move_constructible_v<E>}
is \tcode{true}.
Expand Down Expand Up @@ -7851,13 +7851,13 @@
\constraints
\begin{itemize}
\item
\tcode{is_same_v<expected, remove_cvref_t<U>>} is \tcode{false}; and
\tcode{is_same_v<expected, remove_cvref_t<U>>} is \tcode{false},
\item
\tcode{remove_cvref_t<U>} is not a specialization of \tcode{unexpected}; and
\tcode{remove_cvref_t<U>} is not a specialization of \tcode{unexpected},
\item
\tcode{is_constructible_v<T, U>} is \tcode{true}; and
\tcode{is_constructible_v<T, U>} is \tcode{true},
\item
\tcode{is_assignable_v<T\&, U>} is \tcode{true}; and
\tcode{is_assignable_v<T\&, U>} is \tcode{true}, and
\item
\tcode{is_nothrow_constructible_v<T, U> || is_nothrow_move_constructible_v<T> ||\newline
is_nothrow_move_constructible_v<E>}
Expand Down Expand Up @@ -7900,9 +7900,9 @@
\constraints
\begin{itemize}
\item
\tcode{is_constructible_v<E, GF>} is \tcode{true}; and
\tcode{is_constructible_v<E, GF>} is \tcode{true},
\item
\tcode{is_assignable_v<E\&, GF>} is \tcode{true}; and
\tcode{is_assignable_v<E\&, GF>} is \tcode{true}, and
\item
\tcode{is_nothrow_constructible_v<E, GF> || is_nothrow_move_constructible_v<T> ||\newline
is_nothrow_move_constructible_v<E>} is \tcode{true}.
Expand Down Expand Up @@ -7990,9 +7990,9 @@
\constraints
\begin{itemize}
\item
\tcode{is_swappable_v<T>} is \tcode{true} and
\tcode{is_swappable_v<T>} is \tcode{true},
\item
\tcode{is_swappable_v<E>} is \tcode{true} and
\tcode{is_swappable_v<E>} is \tcode{true},
\item
\tcode{is_move_constructible_v<T> \&\& is_move_constructible_v<E>}
is \tcode{true}, and
Expand Down Expand Up @@ -8472,18 +8472,18 @@
\constraints
\begin{itemize}
\item
\tcode{is_void_v<U>} is \tcode{true}; and
\tcode{is_void_v<U>} is \tcode{true},
\item
\tcode{is_constructible_v<E, GF>} is \tcode{true}; and
\tcode{is_constructible_v<E, GF>} is \tcode{true},
\item
\tcode{is_constructible_v<unexpected<E>, expected<U, G>\&>}
is \tcode{false}; and
is \tcode{false},
\item
\tcode{is_constructible_v<unexpected<E>, expected<U, G>>}
is \tcode{false}; and
is \tcode{false},
\item
\tcode{is_constructible_v<unexpected<E>, const expected<U, G>\&>}
is \tcode{false}; and
is \tcode{false}, and
\item
\tcode{is_constructible_v<unexpected<E>, const expected<U, G>>}
is \tcode{false}.
Expand Down