Namespace: Rx – Class: CRxArrayDouble – Header: Rx.Core/RxArrayTypes.h

CRxArrayDouble::PushBack Method

C++
void PushBack(double&& tValue)

Appends the given element value to the end of the array. The value is moved into the new element.

If the new size is greater than capacity then all iterators and references (including the past-the-end iterator) are invalidated. Otherwise only the past-the-end iterator is invalidated.

Parameters

[double&&] tValue

[in,out] The value of the element to append.