From Jason Turner

[string.starts.with]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmptx8rf5fn/{from.md → to.md} +14 -0
tmp/tmptx8rf5fn/{from.md → to.md} RENAMED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ##### `basic_string::starts_with` <a id="string.starts.with">[[string.starts.with]]</a>
2
+
3
+ ``` cpp
4
+ constexpr bool starts_with(basic_string_view<charT, traits> x) const noexcept;
5
+ constexpr bool starts_with(charT x) const noexcept;
6
+ constexpr bool starts_with(const charT* x) const;
7
+ ```
8
+
9
+ *Effects:* Equivalent to:
10
+
11
+ ``` cpp
12
+ return basic_string_view<charT, traits>(data(), size()).starts_with(x);
13
+ ```
14
+