Skip to content

Commit cd2055c

Browse files
authored
Add backticks in <unordered_set> operators reference
1 parent d1b3a19 commit cd2055c

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

docs/standard-library/unordered-set-operators.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@ ms.assetid: 8653eea6-12f2-4dd7-aa2f-db38a71599a0
77
---
88
# `<unordered_set>` operators
99

10-
## <a name="op_neq"></a> operator!=
10+
## <a name="op_neq"></a> `operator!=`
1111

12-
Tests whether the [unordered_set](../standard-library/unordered-set-class.md) object on the left side of the operator is not equal to the unordered_set object on the right side.
12+
Tests whether the [`unordered_set`](../standard-library/unordered-set-class.md) object on the left side of the operator is not equal to the `unordered_set` object on the right side.
1313

1414
```cpp
1515
bool operator!=(const unordered_set <Key, Hash, Pred, Allocator>& left, const unordered_set <Key, Hash, Pred, Allocator>& right);
1616
```
1717

1818
### Parameters
1919

20-
*left*\
20+
*`left`*\
2121
An object of type `unordered_set`.
2222

23-
*right*\
23+
*`right`*\
2424
An object of type `unordered_set`.
2525

2626
### Return Value
2727

28-
**`true`** if the unordered_sets are not equal; **`false`** if they are equal.
28+
**`true`** if the `unordered_set`s are not equal; **`false`** if they are equal.
2929

3030
### Remarks
3131

32-
The comparison between unordered_set objects is not affected by the arbitrary order in which they store their elements. Two unordered_sets are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
32+
The comparison between `unordered_set` objects is not affected by the arbitrary order in which they store their elements. Two `unordered_set`s are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
3333

3434
### Example
3535

@@ -73,29 +73,29 @@ c1 != c3: false
7373
c2 != c3: true
7474
```
7575

76-
## <a name="op_eq_eq"></a> operator==
76+
## <a name="op_eq_eq"></a> `operator==`
7777

78-
Tests whether the [unordered_set](../standard-library/unordered-set-class.md) object on the left side of the operator is equal to the unordered_set object on the right side.
78+
Tests whether the [`unordered_set`](../standard-library/unordered-set-class.md) object on the left side of the operator is equal to the `unordered_set` object on the right side.
7979

8080
```cpp
8181
bool operator==(const unordered_set <Key, Hash, Pred, Allocator>& left, const unordered_set <Key, Hash, Pred, Allocator>& right);
8282
```
8383

8484
### Parameters
8585

86-
*left*\
86+
*`left`*\
8787
An object of type `unordered_set`.
8888

89-
*right*\
89+
*`right`*\
9090
An object of type `unordered_set`.
9191

9292
### Return Value
9393

94-
**`true`** if the unordered_sets are equal; **`false`** if they are not equal.
94+
**`true`** if the `unordered_set`s are equal; **`false`** if they are not equal.
9595

9696
### Remarks
9797

98-
The comparison between unordered_set objects is not affected by the arbitrary order in which they store their elements. Two unordered_sets are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
98+
The comparison between `unordered_set` objects is not affected by the arbitrary order in which they store their elements. Two `unordered_set`s are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
9999

100100
### Example
101101

@@ -139,29 +139,29 @@ c1 == c3: true
139139
c2 == c3: false
140140
```
141141

142-
## <a name="op_neq_unordered_multiset"></a> operator!= (multiset)
142+
## <a name="op_neq_unordered_multiset"></a> `operator!=` (multiset)
143143

144-
Tests whether the [unordered_multiset](../standard-library/unordered-multiset-class.md) object on the left side of the operator is not equal to the unordered_multiset object on the right side.
144+
Tests whether the [`unordered_multiset`](../standard-library/unordered-multiset-class.md) object on the left side of the operator is not equal to the `unordered_multiset` object on the right side.
145145

146146
```cpp
147147
bool operator!=(const unordered_multiset <Key, Hash, Pred, Allocator>& left, const unordered_multiset <Key, Hash, Pred, Allocator>& right);
148148
```
149149

150150
### Parameters
151151

152-
*left*\
152+
*`left`*\
153153
An object of type `unordered_multiset`.
154154

155-
*right*\
155+
*`right`*\
156156
An object of type `unordered_multiset`.
157157

158158
### Return Value
159159

160-
**`true`** if the unordered_multisets are not equal; **`false`** if they are equal.
160+
**`true`** if the `unordered_multiset`s are not equal; **`false`** if they are equal.
161161

162162
### Remarks
163163

164-
The comparison between unordered_multiset objects is not affected by the arbitrary order in which they store their elements. Two unordered_multisets are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
164+
The comparison between `unordered_multiset` objects is not affected by the arbitrary order in which they store their elements. Two `unordered_multiset`s are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
165165

166166
### Example
167167

@@ -208,29 +208,29 @@ c1 != c3: false
208208
c2 != c3: true
209209
```
210210

211-
## <a name="op_eq_eq_unordered_multiset"></a> operator== (multiset)
211+
## <a name="op_eq_eq_unordered_multiset"></a> `operator==` (multiset)
212212

213-
Tests whether the [unordered_multiset](../standard-library/unordered-multiset-class.md) object on the left side of the operator is equal to the unordered_multiset object on the right side.
213+
Tests whether the [`unordered_multiset`](../standard-library/unordered-multiset-class.md) object on the left side of the operator is equal to the `unordered_multiset` object on the right side.
214214

215215
```cpp
216216
bool operator==(const unordered_multiset <Key, Hash, Pred, Allocator>& left, const unordered_multiset <Key, Hash, Pred, Allocator>& right);
217217
```
218218

219219
### Parameters
220220

221-
*left*\
221+
*`left`*\
222222
An object of type `unordered_multiset`.
223223

224-
*right*\
224+
*`right`*\
225225
An object of type `unordered_multiset`.
226226

227227
### Return Value
228228

229-
**`true`** if the unordered_multisets are equal; **`false`** if they are not equal.
229+
**`true`** if the `unordered_multiset`s are equal; **`false`** if they are not equal.
230230

231231
### Remarks
232232

233-
The comparison between unordered_multiset objects is not affected by the arbitrary order in which they store their elements. Two unordered_multisets are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
233+
The comparison between `unordered_multiset` objects is not affected by the arbitrary order in which they store their elements. Two `unordered_multiset`s are equal if they have the same number of elements and the elements in one container are a permutation of the elements in the other container. Otherwise, they are unequal.
234234

235235
### Example
236236

0 commit comments

Comments
 (0)