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/basic-istream-class.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ class basic_istream : virtual public basic_ios<Elem, Tr>
44
44
```
45
45
46
46
## Remarks
47
-
Most of the member functions that overload [operator>>](#op_gt__gt) are formatted input functions. They follow the pattern:
47
+
Most of the member functions that overload [operator>>](#op_gt_gt) are formatted input functions. They follow the pattern:
48
48
49
49
```cpp
50
50
iostate state = goodbit;
@@ -149,7 +149,7 @@ setstate(state);
149
149
150
150
|||
151
151
|-|-|
152
-
|[operator>>](#op_gt__gt)|Calls a function on the input stream or reads formatted data from the input stream.|
152
+
|[operator>>](#op_gt_gt)|Calls a function on the input stream or reads formatted data from the input stream.|
153
153
|[operator=](#op_eq)|Assigns the `basic_istream` on the right side of the operator to this object. This is a move assignment involving an `rvalue` reference that does not leave a copy behind.|
Copy file name to clipboardExpand all lines: docs/standard-library/checked-array-iterator-class.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,8 +178,8 @@ int main()
178
178
|[operator!=](#op_neq)|Tests two `checked_array_iterator`s for inequality.|
179
179
|[operator<](#op_lt)|Tests if the `checked_array_iterator` on the left side of the operator is less than the `checked_array_iterator` on the right side.|
180
180
|[operator>](#op_gt)|Tests if the `checked_array_iterator` on the left side of the operator is greater than the `checked_array_iterator` on the right side.|
181
-
|[operator<=](#op_lt__eq)|Tests if the `checked_array_iterator` on the left side of the operator is less than or equal to the `checked_array_iterator` on the right side.|
182
-
|[operator>=](#op_gt__eq)|Tests if the `checked_array_iterator` on the left side of the operator is greater than or equal to the `checked_array_iterator` on the right side.|
181
+
|[operator<=](#op_lt_eq)|Tests if the `checked_array_iterator` on the left side of the operator is less than or equal to the `checked_array_iterator` on the right side.|
182
+
|[operator>=](#op_gt_eq)|Tests if the `checked_array_iterator` on the left side of the operator is greater than or equal to the `checked_array_iterator` on the right side.|
183
183
|[operator*](#op_star)|Returns the element that a `checked_array_iterator` addresses.|
184
184
|[operator->](#operator-_gt)|Returns a pointer to the element addressed by the `checked_array_iterator`.|
185
185
|[operator++](#op_add_add)|Increments the `checked_array_iterator` to the next element.|
The second function returns `true` if `Left` precedes `Right`. Otherwise, the function returns `false`.
233
233
234
-
## <aname="eq"></a> operator<=
234
+
## <aname="lt_eq"></a> operator<=
235
235
Determines whether one [duration](../standard-library/duration-class.md) or [time_point](../standard-library/time-point-class.md) object is less than or equal to another `duration` or `time_point` object.
236
236
237
237
```
@@ -308,7 +308,7 @@ constexpr bool operator>(
308
308
### Return Value
309
309
Each function returns `Right < Left`.
310
310
311
-
## <aname="eq"></a> operator>=
311
+
## <aname="gt_eq"></a> operator>=
312
312
Determines whether one [duration](../standard-library/duration-class.md) or [time_point](../standard-library/time-point-class.md) object is greater than or equal to another `duration` or `time_point` object.
Copy file name to clipboardExpand all lines: docs/standard-library/complex-class.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ class complex
85
85
|[operator*=](#op_star_eq)|Multiplies a target complex number by a factor, which may be complex or be the same type as are the real and imaginary parts of the complex number.|
86
86
|[operator+=](#op_add_eq)|Adds a number to a target complex number, where the number added may be complex or of the same type as are the real and imaginary parts of the complex number to which it is added.|
87
87
|[operator-=](#operator-_eq)|Subtracts a number from a target complex number, where the number subtracted may be complex or of the same type as are the real and imaginary parts of the complex number to which it is added.|
88
-
|[operator/=](#op__eq)|Divides a target complex number by a divisor, which may be complex or be the same type as are the real and imaginary parts of the complex number.|
88
+
|[operator/=](#op_div_eq)|Divides a target complex number by a divisor, which may be complex or be the same type as are the real and imaginary parts of the complex number.|
89
89
|[operator=](#op_eq)|Assigns a number to a target complex number, where the number assigned may be complex or of the same type as are the real and imaginary parts of the complex number to which it is being assigned.|
90
90
91
91
## Requirements
@@ -512,7 +512,7 @@ The modulus of cl2 is: 5
512
512
The argument of cl2 is: 2.2143 radians, which is 126.87 degrees.
513
513
```
514
514
515
-
## <aname="eq"></a> complex::operator/=
515
+
## <aname="op_div_eq"></a> complex::operator/=
516
516
Divides a target complex number by a divisor, which may be complex or be the same type as are the real and imaginary parts of the complex number.
Tests if the forward list object on the left side of the operator is equal to the forward list object on the right side.
@@ -80,7 +80,7 @@ bool operator<(
80
80
### Remarks
81
81
This template function overloads `operator<` to compare two objects of template class `forward_list`. The function returns `lexicographical_compare(lhs. begin(), lhs. end(), rhs.begin(), rhs.end())`.
82
82
83
-
## <aname="eq"></a> operator<=
83
+
## <aname="op_lt_eq"></a> operator<=
84
84
Tests if the forward list object on the left side of the operator is less than or equal to the forward list object on the right side.
85
85
86
86
```
@@ -124,7 +124,7 @@ bool operator>(
124
124
### Remarks
125
125
This template function returns `right < left`.
126
126
127
-
## <aname="eq"></a> operator>=
127
+
## <aname="op_gt_eq"></a> operator>=
128
128
Tests if the forward list object on the left side of the operator is greater than or equal to the forward list object on the right side.
The `basic_istream` class also defines several extraction operators. For more information, see [basic_istream::operator>>](../standard-library/basic-istream-class.md#op_gt__gt).
75
+
The `basic_istream` class also defines several extraction operators. For more information, see [basic_istream::operator>>](../standard-library/basic-istream-class.md#op_gt_gt).
0 commit comments