Skip to content
Merged
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
24 changes: 12 additions & 12 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6905,10 +6905,10 @@
constexpr T& value() &;
constexpr const T&& value() const &&;
constexpr T&& value() &&;
constexpr const E& error() const &;
constexpr E& error() &;
constexpr const E&& error() const &&;
constexpr E&& error() &&;
constexpr const E& error() const & noexcept;
constexpr E& error() & noexcept;
constexpr const E&& error() const && noexcept;
constexpr E&& error() && noexcept;
template<class U> constexpr T value_or(U&&) const &;
template<class U> constexpr T value_or(U&&) &&;

Expand Down Expand Up @@ -7962,10 +7962,10 @@
constexpr void operator*() const noexcept;
constexpr void value() const &;
constexpr void value() &&;
constexpr const E& error() const &;
constexpr E& error() &;
constexpr const E&& error() const &&;
constexpr E&& error() &&;
constexpr const E& error() const & noexcept;
constexpr E& error() & noexcept;
constexpr const E&& error() const && noexcept;
constexpr E&& error() && noexcept;

// \ref{expected.void.eq}, equality operators
template<class T2, class E2> requires is_void_v<T2>
Expand Down Expand Up @@ -8449,8 +8449,8 @@

\indexlibrarymember{error}{expected<void>}%
\begin{itemdecl}
constexpr const E& error() const &;
constexpr E& error() &;
constexpr const E& error() const & noexcept;
constexpr E& error() & noexcept;
\end{itemdecl}

\begin{itemdescr}
Expand All @@ -8465,8 +8465,8 @@

\indexlibrarymember{error}{expected<void>}%
\begin{itemdecl}
constexpr E&& error() &&;
constexpr const E&& error() const &&;
constexpr E&& error() && noexcept;
constexpr const E&& error() const && noexcept;
\end{itemdecl}

\begin{itemdescr}
Expand Down