operator==(std::layout_stride::mapping)
Min standard notice:
Compares two layout mappings of possibly different layout types based on their underlying extents and strides.
# Declarations
template< class OtherMapping >
friend constexpr bool operator==( const mapping& lhs,
const OtherMapping& rhs ) noexcept;
(since C++23)
# Parameters
lhs, rhs: layout mappings whose extents and strides to compare
# Return value
true if lhs and rhs are both equal as specified above, false otherwise
# Example
This section is incompleteReason: no example