arrayCopy()

Data / Array Functions

Description

Copies the contents of one vector into another.

Syntax

void arrayCopy(std::vector<T> src, std::vector<T> dst)

Parameters

NameTypeDescription
srcstd::vectorsource vector
dststd::vectordestination vector

Returns

void

Related