mrdocs::operator==

Equality operator

Synopsis

Declared in <mrdocs/Support/Expected.hpp>

constexpr
bool
operator==(
    Expected const& x,
    Unexpected<E2> const& e) noexcept(noexcept(bool(x.error() == e.error())));

Return Value

true if the objects are equal, false otherwise

Parameters

Name Description

x

The left operand

e

The right operand

Created with MrDocs