_d_arraysetctor

fnvoid _d_arraysetctor(Tarr : T[], T)(scope Tarr p, scope ref T value) @trusted

Do construction of an array. ti[count] p = value;

Parameters

pwhat array to initialize
valuewhat data to construct the array with

Bugs

This function template was ported from a much older runtime hook that bypassed safety,

purity, and throwabilty checks. To prevent breaking existing code, this function template is temporarily declared @trusted until the implementation can be brought up to modern D expectations.