tmp/tmpi0qfvd25/{from.md → to.md}
RENAMED
|
@@ -19,22 +19,22 @@ Otherwise, returns `npos`.
|
|
| 19 |
|
| 20 |
``` cpp
|
| 21 |
size_type find(const charT* s, size_type pos, size_type n) const;
|
| 22 |
```
|
| 23 |
|
| 24 |
-
*Returns:* `find(basic_string
|
| 25 |
|
| 26 |
``` cpp
|
| 27 |
-
size_type find(const charT* s, size_type pos = 0) const
|
| 28 |
```
|
| 29 |
|
| 30 |
*Requires:* `s` points to an array of at least `traits::length(s) + 1`
|
| 31 |
elements of `charT`.
|
| 32 |
|
| 33 |
*Returns:* `find(basic_string(s), pos)`.
|
| 34 |
|
| 35 |
``` cpp
|
| 36 |
-
size_type find(charT c, size_type pos = 0) const
|
| 37 |
```
|
| 38 |
|
| 39 |
-
*Returns:* `find(basic_string
|
| 40 |
|
|
|
|
| 19 |
|
| 20 |
``` cpp
|
| 21 |
size_type find(const charT* s, size_type pos, size_type n) const;
|
| 22 |
```
|
| 23 |
|
| 24 |
+
*Returns:* `find(basic_string(s,n),pos)`.
|
| 25 |
|
| 26 |
``` cpp
|
| 27 |
+
size_type find(const charT* s, size_type pos = 0) const;
|
| 28 |
```
|
| 29 |
|
| 30 |
*Requires:* `s` points to an array of at least `traits::length(s) + 1`
|
| 31 |
elements of `charT`.
|
| 32 |
|
| 33 |
*Returns:* `find(basic_string(s), pos)`.
|
| 34 |
|
| 35 |
``` cpp
|
| 36 |
+
size_type find(charT c, size_type pos = 0) const;
|
| 37 |
```
|
| 38 |
|
| 39 |
+
*Returns:* `find(basic_string(1,c), pos)`.
|
| 40 |
|