operator==(std::layout_left::mapping)
Min standard notice:
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
lhs, rhs: layout mappings whose extents to compare
# Return value
true if lhs.extents() == rhs.extents() is true, false otherwise
# Example
This section is incompleteReason: no example