XMFLOAT3X4::operator=(XMFLOAT3X4&&) function (directxmath.h)

Move assignment operator for XMFLOAT3X4. Moves the argument's vector component data into the current instance of XMFLOAT3X4.

Syntax

XMFLOAT3X4 & operator=(
  XMFLOAT3X4 && unnamedParam1
);

Parameters

unnamedParam1

Type: XMFLOAT3X4 &&

An rvalue reference to an XMFLOAT3X4 value whose vector component data the operator should move into the current instance of XMFLOAT3X4.

Return value

Type: XMFLOAT3X4 &

An lvalue reference to the current instance of XMFLOAT3X4, after moving arg1 into it.

Requirements

Requirement Value
Minimum supported client Windows 10 Build 20348
Minimum supported server Windows 10 Build 20348
Target Platform Windows
Header directxmath.h

See also

XMFLOAT3X4 structure