From Jason Turner

[string::rfind]

Diff to HTML by rtfpessoa

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