@@ -7,9 +7,9 @@ helpviewer_keywords: ["std::array [C++], get", "std::get [C++]", "std::swap [C++
77---
88# ` <array> ` functions
99
10- The \ < array> header includes two non-member functions, ` get ` and ` swap ` , that operate on ** array** objects.
10+ The ` <array> ` header includes two non-member functions, ` get ` and ` swap ` , that operate on ** array** objects.
1111
12- ## <a name =" get " ></a > get
12+ ## <a name =" get " ></a > ` get `
1313
1414Returns a reference to the specified element of the array.
1515
@@ -26,16 +26,16 @@ constexpr T&& get(array<T, N>&& arr) noexcept;
2626
2727### Parameters
2828
29- *Index*\
29+ *` Index` *\
3030The element offset.
3131
32- *T *\
32+ *`T` *\
3333The type of an element.
3434
35- *N *\
35+ *`N` *\
3636The number of elements in the array.
3737
38- *arr*\
38+ *` arr` *\
3939The array to select from.
4040
4141### Example
@@ -70,7 +70,7 @@ int main()
70701 3
7171```
7272
73- ## <a name =" swap " ></a > swap
73+ ## <a name =" swap " ></a > ` swap `
7474
7575A non-member template specialization of ` std::swap ` that swaps two ** array** objects.
7676
@@ -81,16 +81,16 @@ void swap(array<Ty, N>& left, array<Ty, N>& right);
8181
8282### Parameters
8383
84- *Ty *\
84+ *`Ty` *\
8585The type of an element.
8686
87- *N *\
87+ *`N` *\
8888The size of the array.
8989
90- *left*\
90+ *` left` *\
9191The first array to swap.
9292
93- *right*\
93+ *` right` *\
9494The second array to swap.
9595
9696### Remarks
@@ -145,4 +145,4 @@ int main()
145145
146146## See also
147147
148- [\ <array>](../standard-library/array.md)
148+ [` <array>` ](../standard-library/array.md)
0 commit comments