operator==(std::layout_right::mapping)

Compares two layout mappings of the same layout type based on their underlying extents.

# Declarations

template< class OtherExtents >
friend constexpr bool operator==( const mapping& lhs,
const mapping<OtherExtents>& rhs ) noexcept;

(since C++23)

# Parameters

# Return value

true if lhs.extents() == rhs.extents() is true, false otherwise

# Example

This section is incompleteReason: no example

# See also