Equality operator

Synopsis

Declared in <mrdocs/ADT/ArrayView.hpp>

constexpr
bool
operator==(
    ArrayView a,
    ArrayView b) noexcept
requires requires (const T& x, const T& y) { { x == y } ‐> std::convertible_to<bool>; };

Return Value

true if the objects are equal, false otherwise

Parameters

Name

Description

a

The left operand

b

The right operand

Created with MrDocs