tmp/tmp96jjgfjw/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
##### `submdspan_mapping_result` <a id="mdspan.sub.map.result">[[mdspan.sub.map.result]]</a>
|
| 2 |
+
|
| 3 |
+
Specializations of `submdspan_mapping_result` are returned by overloads
|
| 4 |
+
of `submdspan_mapping`.
|
| 5 |
+
|
| 6 |
+
``` cpp
|
| 7 |
+
namespace std {
|
| 8 |
+
template<class LayoutMapping>
|
| 9 |
+
struct submdspan_mapping_result {
|
| 10 |
+
[[no_unique_address]] LayoutMapping mapping = LayoutMapping();
|
| 11 |
+
size_t offset{};
|
| 12 |
+
};
|
| 13 |
+
}
|
| 14 |
+
```
|
| 15 |
+
|
| 16 |
+
`submdspan_mapping_result` has the data members and special members
|
| 17 |
+
specified above. It has no base classes or members other than those
|
| 18 |
+
specified.
|
| 19 |
+
|
| 20 |
+
`LayoutMapping` shall meet the layout mapping requirements
|
| 21 |
+
[[mdspan.layout.policy.reqmts]].
|
| 22 |
+
|