Iterator¶
-
template <typename Container> back_emplacer_operator Function object that calls
emplace_back()on the container for which it was constructed,std::forward‘ing the arguments to the container.-
explicit
back_emplacer_operator(Container &container)¶ Parameters: container – Reference to the container that supports emplace_backType container: Container&
-
template <typename... Args> back_emplacer_operator<Container>& operator()(Args&&...) Calls
std::forwardon the given arguments to pass them to the container’semplace_backmethod.Returns: *this
-
private Container *
container¶
-
explicit