Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.61 KB

File metadata and controls

47 lines (36 loc) · 1.61 KB
title <array>
ms.date 11/04/2016
f1_keywords
<array>
helpviewer_keywords
array header
ms.assetid 084147c1-e805-478e-8201-76846020f187

<array>

Defines the container template class array and several supporting templates.

Syntax

#include <array>

Classes

Class Description
array Stores a fixed-length sequence of elements.
tuple_element Wraps the type of an array element.
tuple_size Wraps the size of an array element.

Operators

Operator Description
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

Function Description
get Get specified array element.
swap Exchanges the contents of one array with the contents of another array.

See also

<tuple>
Header Files Reference