We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For instance with layout_right, the standard says
layout_right
template<class OtherExtents> friend constexpr bool operator==(const mapping& x, const mapping<OtherExtents>& y) noexcept; Constraints: extents_type::rank() == OtherExtents::rank() is true. Effects: Equivalent to: return x.extents() == y.extents();
template<class OtherExtents> friend constexpr bool operator==(const mapping& x, const mapping<OtherExtents>& y) noexcept;
Constraints: extents_type::rank() == OtherExtents::rank() is true. Effects: Equivalent to: return x.extents() == y.extents();
extents_type::rank() == OtherExtents::rank()
true
return x.extents() == y.extents();
and our implementation does
mdspan/include/experimental/__p0009_bits/layout_left.hpp
Lines 190 to 194 in 26f4d3a
I realized that as I was reviewing Chrisitan's tests for libcxx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For instance with
layout_right
, the standard saysand our implementation does
mdspan/include/experimental/__p0009_bits/layout_left.hpp
Lines 190 to 194 in 26f4d3a
I realized that as I was reviewing Chrisitan's tests for libcxx
The text was updated successfully, but these errors were encountered: