Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.69 KB

array.md

File metadata and controls

52 lines (38 loc) · 1.69 KB
descriptiontitlems.datef1_keywordshelpviewer_keywords
Learn more about: <array>
<array>
11/04/2016
<array>
array header

<array>

Defines the container class template array and several supporting templates.

Requirements

Header: <array>

Namespace: std

Note

The <array> library also uses the #include <initializer_list> statement.

Members

Classes

NameDescription
arrayStores a fixed-length sequence of elements.
tuple_elementWraps the type of an array element.
tuple_sizeWraps the size of an array element.

Operators

NameDescription
operator==array comparison, equal
operator!=array comparison, not equal
operator<array comparison, less than
operator>=array comparison, greater than or equal
operator>array comparison, greater than
operator<=array comparison, less than or equal

Functions

NameDescription
getGet specified array element.
swapExchanges the contents of one array with the contents of another array.

See also

<tuple>
Header Files Reference

close