From Jason Turner

[string::operator==]

Diff to HTML by rtfpessoa

tmp/tmp_ca4d8_a/{from.md → to.md} RENAMED
@@ -9,19 +9,19 @@ template<class charT, class traits, class Allocator>
9
  *Returns:* `lhs.compare(rhs) == 0`.
10
 
11
  ``` cpp
12
  template<class charT, class traits, class Allocator>
13
  bool operator==(const charT* lhs,
14
- const basic_string<charT,traits,Allocator>& rhs) noexcept;
15
  ```
16
 
17
  *Returns:* `rhs == lhs`.
18
 
19
  ``` cpp
20
  template<class charT, class traits, class Allocator>
21
  bool operator==(const basic_string<charT,traits,Allocator>& lhs,
22
- const charT* rhs) noexcept;
23
  ```
24
 
25
  *Requires:* `rhs` points to an array of at least
26
  `traits::length(rhs) + 1` elements of `charT`.
27
 
 
9
  *Returns:* `lhs.compare(rhs) == 0`.
10
 
11
  ``` cpp
12
  template<class charT, class traits, class Allocator>
13
  bool operator==(const charT* lhs,
14
+ const basic_string<charT,traits,Allocator>& rhs);
15
  ```
16
 
17
  *Returns:* `rhs == lhs`.
18
 
19
  ``` cpp
20
  template<class charT, class traits, class Allocator>
21
  bool operator==(const basic_string<charT,traits,Allocator>& lhs,
22
+ const charT* rhs);
23
  ```
24
 
25
  *Requires:* `rhs` points to an array of at least
26
  `traits::length(rhs) + 1` elements of `charT`.
27