From Jason Turner

[string::find.first.of]

Diff to HTML by rtfpessoa

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