nogc_move

Moves elements in src to dst via destructive copy.

If an element in src is not a valid object, then accessing the moved element in to will be undefined behaviour.

After the move operation, the original memory locations in from will be reset to their base initialized state before any constructors are run.

@nogc @trusted
void
nogc_move
(
T
)
(
T[] dst
,
T[] src
)

Meta