You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/standard-library/string-view-operators.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ bool operator!=(
32
32
33
33
### Parameters
34
34
35
-
*left*\
35
+
*`left`*\
36
36
Any convertible string type or an object of type `basic_string_view` to be compared.
37
37
38
-
*right*\
38
+
*`right`*\
39
39
Any convertible string type or an object of type `basic_string_view` to be compared.
40
40
41
41
### Return Value
@@ -71,10 +71,10 @@ bool operator==(
71
71
72
72
### Parameters
73
73
74
-
*left*\
74
+
*`left`*\
75
75
Any convertible string type or an object of type `basic_string_view` to be compared.
76
76
77
-
*right*\
77
+
*`right`*\
78
78
Any convertible string type or an object of type `basic_string_view` to be compared.
79
79
80
80
### Return Value
@@ -110,10 +110,10 @@ bool operator<(
110
110
111
111
### Parameters
112
112
113
-
*left*\
113
+
*`left`*\
114
114
Any convertible string type or an object of type `basic_string_view` to be compared.
115
115
116
-
*right*\
116
+
*`right`*\
117
117
Any convertible string type or an object of type `basic_string_view` to be compared.
118
118
119
119
### Return Value
@@ -122,7 +122,7 @@ Any convertible string type or an object of type `basic_string_view` to be compa
122
122
123
123
### Remarks
124
124
125
-
An implicit conversion must exist from *convertible_string_type* to the string_view on the other side.
125
+
An implicit conversion must exist from *convertible_string_type* to the `string_view` on the other side.
126
126
127
127
The comparison is based on a pairwise lexicographical comparison of the character sequences. When the first unequal pair of characters is encountered, the result of that comparison is returned. If no unequal characters are found, but one sequence is shorter, the shorter sequence is less than the longer one. In other words, "cat" is less than "cats".
128
128
@@ -171,10 +171,10 @@ bool operator<=(
171
171
172
172
### Parameters
173
173
174
-
*left*\
174
+
*`left`*\
175
175
Any convertible string type or an object of type `basic_string_view` to be compared.
176
176
177
-
*right*\
177
+
*`right`*\
178
178
Any convertible string type or an object of type `basic_string_view` to be compared.
0 commit comments