tmp/tmpnngo4lb2/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Deduction guide <a id="string.view.deduct">[[string.view.deduct]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
template<class It, class End>
|
| 5 |
+
basic_string_view(It, End) -> basic_string_view<iter_value_t<It>>;
|
| 6 |
+
```
|
| 7 |
+
|
| 8 |
+
*Constraints:*
|
| 9 |
+
|
| 10 |
+
- `It` satisfies `contiguous_iterator`.
|
| 11 |
+
- `End` satisfies `sized_sentinel_for<It>`.
|
| 12 |
+
|