...like std::vector<T>::emplace_back() and std::queue<T>::emplace_back(), but without returning the reference to the added container element, to avoid copying.
See https://en.cppreference.com/w/cpp/container/queue/emplace
Adding locked_queue<T>::emplace_front() might be added for symmetry, too, because this locked_queue is a double-ended queue.