template<class Alloc> constexpr explicit priority_queue(const Alloc& a);
template<class Alloc> constexpr priority_queue(const Compare& compare, const Alloc& a);
template<class Alloc>
constexpr priority_queue(const Compare& compare, const Container& cont, const Alloc& a);
template<class Alloc>
constexpr priority_queue(const Compare& compare, Container&& cont, const Alloc& a);
template<class Alloc> constexpr priority_queue(const priority_queue& q, const Alloc& a);
template<class Alloc> constexpr priority_queue(priority_queue&& q, const Alloc& a);
template<class InputIterator, class Alloc>
constexpr priority_queue(InputIterator first, InputIterator last, const Alloc& a);
template<class InputIterator, class Alloc>
constexpr priority_queue(InputIterator first, InputIterator last,
const Compare& compare, const Alloc& a);
template<class InputIterator, class Alloc>
constexpr priority_queue(InputIterator first, InputIterator last, const Compare& compare,
const Container& cont, const Alloc& a);
template<class InputIterator, class Alloc>
constexpr priority_queue(InputIterator first, InputIterator last, const Compare& compare,
Container&& cont, const Alloc& a);
template<container-compatible-range<T> R, class Alloc>
constexpr priority_queue(from_range_t, R&& rg, const Compare& compare, const Alloc& a);
template<container-compatible-range<T> R, class Alloc>
constexpr priority_queue(from_range_t, R&& rg, const Alloc& a);