C++
AcArray<T,R>& appendRep( const T& value, int nCount );
Description
Appends the value to the array n times.
E.g.: arr.appendRep(v1, 7);
Parameters
Parameters | Description |
---|---|
value | Input value of appropriate type |
nCount | Input the number of times the value should be added |