template<class Alloc> constexpr explicit stack(const Alloc& a);
template<class Alloc> constexpr stack(const container_type& cont, const Alloc& a);
template<class Alloc> constexpr stack(container_type&& cont, const Alloc& a);
template<class Alloc> constexpr stack(const stack& s, const Alloc& a);
template<class Alloc> constexpr stack(stack&& s, const Alloc& a);
template<class InputIterator, class Alloc>
constexpr stack(InputIterator first, InputIterator last, const Alloc& alloc);
template<container-compatible-range<T> R, class Alloc>
constexpr stack(from_range_t, R&& rg, const Alloc& a);