tmp/tmpdhpa0_2y/{from.md → to.md}
RENAMED
|
@@ -32,11 +32,10 @@ size_type find_last_of(const charT* s, size_type pos = npos) const;
|
|
| 32 |
elements of `charT`.
|
| 33 |
|
| 34 |
*Returns:* `find_last_of(basic_string(s), pos)`.
|
| 35 |
|
| 36 |
``` cpp
|
| 37 |
-
size_type find_last_of(charT c, size_type pos = npos) const
|
| 38 |
```
|
| 39 |
|
| 40 |
-
*Returns:*
|
| 41 |
-
`find_last_of(basic_string<charT,traits,Allocator>(1,c),pos)`.
|
| 42 |
|
|
|
|
| 32 |
elements of `charT`.
|
| 33 |
|
| 34 |
*Returns:* `find_last_of(basic_string(s), pos)`.
|
| 35 |
|
| 36 |
``` cpp
|
| 37 |
+
size_type find_last_of(charT c, size_type pos = npos) const;
|
| 38 |
```
|
| 39 |
|
| 40 |
+
*Returns:* `find_last_of(basic_string(1,c),pos)`.
|
|
|
|
| 41 |
|