Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Grows this concurrent vector by _Delta elements. This method is concurrency-safe.
iterator grow_by(
size_type _Delta
);
iterator grow_by(
size_type _Delta,
const_reference _Item
);
Parameters
_Delta
The number of elements to append to the object._Item
The value to initialize the new elements with.
Return Value
An iterator to first item appended.
Remarks
If _Item is not specified, the new elements are default constructed.
Requirements
Header: concurrent_vector.h
Namespace: Concurrency