Namespace: Rx – Class: CRxArray – Header: Rx.Core/RxArray.h

CRxArray::operator= Operator

C++
CRxArray<TValue>& operator=(CRxArray<TValue>&& xArray)

Move assignment operator. Replaces the contents with those of the given array using move semantics (i.e. the data in the given array is moved into this array). The given array is in a valid but unspecified state afterwards.

Parameters

[CRxArray<TValue>&&] xArray

[in,out] The array to move.

Returns

CRxArray<TValue>&

This array.