Skip to content

Latest commit

 

History

History
59 lines (47 loc) · 1.85 KB

File metadata and controls

59 lines (47 loc) · 1.85 KB
title <array> | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-standard-libraries
ms.tgt_pltfrm
ms.topic article
f1_keywords
<array>
dev_langs
C++
helpviewer_keywords
array header
ms.assetid 084147c1-e805-478e-8201-76846020f187
caps.latest.revision 21
author corob-msft
ms.author corob
manager ghogen

<array>

Defines the container template class array and several supporting templates.

Syntax

#include <array>  

Classes

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== 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

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

See Also

<tuple>
Header Files Reference