bsl::priority_queue::emplace

Insert into this priority queue a newly created value_type object, constructed by forwarding the specified (variable number of) args to the corresponding constructor of value_type. In effect, performs c.emplace_back(FORWARD(Args,args)...);.

Synopsis

Declared in <bslstl_priorityqueue.h>

template<class... Args>
void
emplace(Args&&... args);