std::back_insert_iterator::back_insert_iterator

From cppreference.com

explicit back_insert_iterator( Container& c );

Initializes the underlying pointer to the container to std::addressof(c) .

Parameters

c - container to initialize the inserter with