Skip to content

Commit 35628ae

Browse files
committed
map set unordered_map unordered_set
1 parent b563abc commit 35628ae

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

docs/standard-library/map.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ Defines the container template classes map and multimap and their supporting tem
2020

2121
```cpp
2222
#include <map>
23-
2423
```
2524

25+
> [!NOTE]
26+
> The \<map> library also uses the `#include <initializer_list>` statement.
27+
2628
## Members
2729

2830
### Operators

docs/standard-library/set.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ Defines the container template classes set and multiset and their supporting tem
2020

2121
```cpp
2222
#include <set>
23-
2423
```
2524

25+
> [!NOTE]
26+
> The \<set> library also uses the `#include <initializer_list>` statement.
27+
2628
## Members
2729

2830
### Operators

docs/standard-library/unordered-map.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Defines the container template classes [unordered_map](../standard-library/unord
2222
#include <unordered_map>
2323
```
2424

25+
> [!NOTE]
26+
> The \<unordered_map> library also uses the `#include <initializer_list>` statement.
27+
2528
### Classes
2629

2730
|Class|Description|

docs/standard-library/unordered-set.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ Defines the container template classes [unordered_multiset](../standard-library/
2222
#include <unordered_set>
2323
```
2424

25+
> [!NOTE]
26+
> The \<unordered_set> library also uses the `#include <initializer_list>` statement.
27+
2528
### Classes
2629

2730
|Class|Description|

0 commit comments

Comments
 (0)