Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 478 Bytes

File metadata and controls

16 lines (14 loc) · 478 Bytes

Arrays are static containers used to store objects of the same datatype.

Syntax:

array<object_type, array_size> array_name;

Member Functions

Element access

Function Description
at access specified element with bounds checking
operator[] access specified element
front access the first element
back access the last element
data direct access to the underlying array

Iterators

Content Cell | Content Cell