_d_arraysetcapacity

set the array capacity. If the array capacity isn't currently large enough to hold the requested capacity (in number of elements), then the array is resized/reallocated to the appropriate size. Pass in a requested capacity of 0 to get the current capacity. Returns the number of elements that can actually be stored once the resizing is done.

extern (C)
size_t
_d_arraysetcapacity
(
const TypeInfo ti
,,
void[]* p
)
in { assert (ti); assert (!(*p).length || (*p).ptr); }
Suggestion Box / Bug Report