From Jason Turner

[string.compare]

Diff to HTML by rtfpessoa

tmp/tmpp_kb7ldz/{from.md → to.md} RENAMED
@@ -12,11 +12,11 @@ template<class T>
12
  - `is_convertible_v<const T&, const charT*>` is `false`.
13
 
14
  *Effects:* Equivalent to:
15
  `return basic_string_view<charT, traits>(*this).compare(t);`
16
 
17
- *Remarks:* The expression inside `noexcept` is equivalent to
18
  `is_nothrow_convertible_v<const T&, basic_string_view<charT, traits>>`.
19
 
20
  ``` cpp
21
  template<class T>
22
  constexpr int compare(size_type pos1, size_type n1, const T& t) const;
 
12
  - `is_convertible_v<const T&, const charT*>` is `false`.
13
 
14
  *Effects:* Equivalent to:
15
  `return basic_string_view<charT, traits>(*this).compare(t);`
16
 
17
+ *Remarks:* The exception specification is equivalent to
18
  `is_nothrow_convertible_v<const T&, basic_string_view<charT, traits>>`.
19
 
20
  ``` cpp
21
  template<class T>
22
  constexpr int compare(size_type pos1, size_type n1, const T& t) const;