concurrent_vector::push_back Method

Appends the given item to the end of the concurrent vector. This method is concurrency-safe.

iterator push_back(
   const_reference _Item
);

Parameters

  • _Item
    The value to be appended.

Return Value

An iterator to item appended.

Requirements

Header: concurrent_vector.h

Namespace: Concurrency

See Also

Reference

concurrent_vector Class