Share

AcArray::appendList

C++

template <typename... TV> AcArray<T,R> & appendList(
    const TV & ... args
);

Description

Variadic method allows appending an arbitrary list of values.

E.g.: arr.appendList(v1, v2, v3);

Parameters

Parameters Description
args Input array of values to append to the list

Links

AcArray

Was this information helpful?