From Jason Turner

[string.substr]

Diff to HTML by rtfpessoa

tmp/tmpyrj59hun/{from.md → to.md} RENAMED
@@ -11,5 +11,12 @@ constexpr basic_string substr(size_type pos = 0, size_type n = npos) &&;
11
  ```
12
 
13
  *Effects:* Equivalent to:
14
  `return basic_string(std::move(*this), pos, n);`
15
 
 
 
 
 
 
 
 
 
11
  ```
12
 
13
  *Effects:* Equivalent to:
14
  `return basic_string(std::move(*this), pos, n);`
15
 
16
+ ``` cpp
17
+ constexpr basic_string_view<charT, traits> subview(size_type pos = 0, size_type n = npos) const;
18
+ ```
19
+
20
+ *Effects:* Equivalent to:
21
+ `return basic_string_view<charT, traits>(*this).subview(pos, n);`
22
+