nw::ut::MoveArray::PushBackFast Member Function

Syntax

template <typename TArg0, typename TArg1, typename TArg2>
void PushBackFast(
     TArg0 arg0,
     TArg1 arg1,
     TArg2 arg2
);

Arguments

Name Description
in arg0 Argument for the constructor for the array element.
in arg1 Argument for the constructor for the array element.
in arg2 Argument for the constructor for the array element.

Return Values

None.

Description

A fast version of push_back.

The range check is Assert only, and the feature to automatically increase capacity does not operate. Use in cases where you want to generate array elements that are explicitly reserved, such as during initialization.


CONFIDENTIAL