xref: /freebsd/contrib/llvm-project/libcxx/include/stack (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
10b57cec5SDimitry Andric// -*- C++ -*-
2349cc55cSDimitry Andric//===----------------------------------------------------------------------===//
30b57cec5SDimitry Andric//
40b57cec5SDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
50b57cec5SDimitry Andric// See https://llvm.org/LICENSE.txt for license information.
60b57cec5SDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
70b57cec5SDimitry Andric//
80b57cec5SDimitry Andric//===----------------------------------------------------------------------===//
90b57cec5SDimitry Andric
100b57cec5SDimitry Andric#ifndef _LIBCPP_STACK
110b57cec5SDimitry Andric#define _LIBCPP_STACK
120b57cec5SDimitry Andric
130b57cec5SDimitry Andric/*
140b57cec5SDimitry Andric    stack synopsis
150b57cec5SDimitry Andric
160b57cec5SDimitry Andricnamespace std
170b57cec5SDimitry Andric{
180b57cec5SDimitry Andric
190b57cec5SDimitry Andrictemplate <class T, class Container = deque<T>>
200b57cec5SDimitry Andricclass stack
210b57cec5SDimitry Andric{
220b57cec5SDimitry Andricpublic:
230b57cec5SDimitry Andric    typedef Container                                container_type;
240b57cec5SDimitry Andric    typedef typename container_type::value_type      value_type;
250b57cec5SDimitry Andric    typedef typename container_type::reference       reference;
260b57cec5SDimitry Andric    typedef typename container_type::const_reference const_reference;
270b57cec5SDimitry Andric    typedef typename container_type::size_type       size_type;
280b57cec5SDimitry Andric
290b57cec5SDimitry Andricprotected:
300b57cec5SDimitry Andric    container_type c;
310b57cec5SDimitry Andric
320b57cec5SDimitry Andricpublic:
330b57cec5SDimitry Andric    stack() = default;
340b57cec5SDimitry Andric    ~stack() = default;
350b57cec5SDimitry Andric
360b57cec5SDimitry Andric    stack(const stack& q) = default;
370b57cec5SDimitry Andric    stack(stack&& q) = default;
380b57cec5SDimitry Andric
390b57cec5SDimitry Andric    stack& operator=(const stack& q) = default;
400b57cec5SDimitry Andric    stack& operator=(stack&& q) = default;
410b57cec5SDimitry Andric
420b57cec5SDimitry Andric    explicit stack(const container_type& c);
430b57cec5SDimitry Andric    explicit stack(container_type&& c);
4404eeddc0SDimitry Andric    template <class InputIterator> stack(InputIterator first, InputIterator last); // since C++23
4506c3fb27SDimitry Andric    template<container-compatible-range<T> R> stack(from_range_t, R&& rg); // since C++23
460b57cec5SDimitry Andric    template <class Alloc> explicit stack(const Alloc& a);
470b57cec5SDimitry Andric    template <class Alloc> stack(const container_type& c, const Alloc& a);
480b57cec5SDimitry Andric    template <class Alloc> stack(container_type&& c, const Alloc& a);
490b57cec5SDimitry Andric    template <class Alloc> stack(const stack& c, const Alloc& a);
500b57cec5SDimitry Andric    template <class Alloc> stack(stack&& c, const Alloc& a);
5104eeddc0SDimitry Andric    template<class InputIterator, class Alloc>
5204eeddc0SDimitry Andric    stack(InputIterator first, InputIterator last, const Alloc&); // since C++23
5306c3fb27SDimitry Andric    template<container-compatible-range<T> R, class Alloc>
5406c3fb27SDimitry Andric      stack(from_range_t, R&& rg, const Alloc&); // since C++23
550b57cec5SDimitry Andric
560b57cec5SDimitry Andric    bool empty() const;
570b57cec5SDimitry Andric    size_type size() const;
580b57cec5SDimitry Andric    reference top();
590b57cec5SDimitry Andric    const_reference top() const;
600b57cec5SDimitry Andric
610b57cec5SDimitry Andric    void push(const value_type& x);
620b57cec5SDimitry Andric    void push(value_type&& x);
6306c3fb27SDimitry Andric    template<container-compatible-range<T> R>
6406c3fb27SDimitry Andric      void push_range(R&& rg); // C++23
650b57cec5SDimitry Andric    template <class... Args> reference emplace(Args&&... args); // reference in C++17
660b57cec5SDimitry Andric    void pop();
670b57cec5SDimitry Andric
680b57cec5SDimitry Andric    void swap(stack& c) noexcept(is_nothrow_swappable_v<Container>)
690b57cec5SDimitry Andric};
700b57cec5SDimitry Andric
710b57cec5SDimitry Andrictemplate<class Container>
720b57cec5SDimitry Andric  stack(Container) -> stack<typename Container::value_type, Container>;  // C++17
730b57cec5SDimitry Andric
7404eeddc0SDimitry Andrictemplate<class InputIterator>
7504eeddc0SDimitry Andric  stack(InputIterator, InputIterator) -> stack<iter-value-type<InputIterator>>; // since C++23
7604eeddc0SDimitry Andric
7706c3fb27SDimitry Andrictemplate<ranges::input_range R>
7806c3fb27SDimitry Andric  stack(from_range_t, R&&) -> stack<ranges::range_value_t<R>>; // since C++23
7906c3fb27SDimitry Andric
800b57cec5SDimitry Andrictemplate<class Container, class Allocator>
810b57cec5SDimitry Andric  stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
820b57cec5SDimitry Andric
8304eeddc0SDimitry Andrictemplate<class InputIterator, class Allocator>
8404eeddc0SDimitry Andric  stack(InputIterator, InputIterator, Allocator)
8504eeddc0SDimitry Andric    -> stack<iter-value-type<InputIterator>,
8604eeddc0SDimitry Andric             deque<iter-value-type<InputIterator>, Allocator>>; // since C++23
8704eeddc0SDimitry Andric
8806c3fb27SDimitry Andrictemplate<ranges::input_range R, class Allocator>
8906c3fb27SDimitry Andric  stack(from_range_t, R&&, Allocator)
9006c3fb27SDimitry Andric    -> stack<ranges::range_value_t<R>, deque<ranges::range_value_t<R>, Allocator>>; // since C++23
9106c3fb27SDimitry Andric
920b57cec5SDimitry Andrictemplate <class T, class Container>
930b57cec5SDimitry Andric  bool operator==(const stack<T, Container>& x, const stack<T, Container>& y);
940b57cec5SDimitry Andrictemplate <class T, class Container>
950b57cec5SDimitry Andric  bool operator< (const stack<T, Container>& x, const stack<T, Container>& y);
960b57cec5SDimitry Andrictemplate <class T, class Container>
970b57cec5SDimitry Andric  bool operator!=(const stack<T, Container>& x, const stack<T, Container>& y);
980b57cec5SDimitry Andrictemplate <class T, class Container>
990b57cec5SDimitry Andric  bool operator> (const stack<T, Container>& x, const stack<T, Container>& y);
1000b57cec5SDimitry Andrictemplate <class T, class Container>
1010b57cec5SDimitry Andric  bool operator>=(const stack<T, Container>& x, const stack<T, Container>& y);
1020b57cec5SDimitry Andrictemplate <class T, class Container>
1030b57cec5SDimitry Andric  bool operator<=(const stack<T, Container>& x, const stack<T, Container>& y);
10406c3fb27SDimitry Andrictemplate<class T, three_way_comparable Container>
10506c3fb27SDimitry Andric  compare_three_way_result_t<Container>
10606c3fb27SDimitry Andric    operator<=>(const stack<T, Container>& x, const stack<T, Container>& y); // since C++20
1070b57cec5SDimitry Andric
1080b57cec5SDimitry Andrictemplate <class T, class Container>
1090b57cec5SDimitry Andric  void swap(stack<T, Container>& x, stack<T, Container>& y)
1100b57cec5SDimitry Andric  noexcept(noexcept(x.swap(y)));
1110b57cec5SDimitry Andric
1120b57cec5SDimitry Andric}  // std
1130b57cec5SDimitry Andric
1140b57cec5SDimitry Andric*/
1150b57cec5SDimitry Andric
11606c3fb27SDimitry Andric#include <__algorithm/ranges_copy.h>
1170b57cec5SDimitry Andric#include <__config>
118*0fca6ea1SDimitry Andric#include <__fwd/stack.h>
11906c3fb27SDimitry Andric#include <__iterator/back_insert_iterator.h>
12004eeddc0SDimitry Andric#include <__iterator/iterator_traits.h>
121fe6060f1SDimitry Andric#include <__memory/uses_allocator.h>
12206c3fb27SDimitry Andric#include <__ranges/access.h>
12306c3fb27SDimitry Andric#include <__ranges/concepts.h>
12406c3fb27SDimitry Andric#include <__ranges/container_compatible_range.h>
12506c3fb27SDimitry Andric#include <__ranges/from_range.h>
12606c3fb27SDimitry Andric#include <__type_traits/is_same.h>
127fe6060f1SDimitry Andric#include <__utility/forward.h>
1280b57cec5SDimitry Andric#include <deque>
12904eeddc0SDimitry Andric#include <version>
1300b57cec5SDimitry Andric
13181ad6265SDimitry Andric// standard-mandated includes
132bdd1243dSDimitry Andric
133bdd1243dSDimitry Andric// [stack.syn]
13481ad6265SDimitry Andric#include <compare>
13581ad6265SDimitry Andric#include <initializer_list>
13681ad6265SDimitry Andric
1370b57cec5SDimitry Andric#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1380b57cec5SDimitry Andric#  pragma GCC system_header
1390b57cec5SDimitry Andric#endif
1400b57cec5SDimitry Andric
141b3edf446SDimitry Andric_LIBCPP_PUSH_MACROS
142b3edf446SDimitry Andric#include <__undef_macros>
143b3edf446SDimitry Andric
1440b57cec5SDimitry Andric_LIBCPP_BEGIN_NAMESPACE_STD
1450b57cec5SDimitry Andric
1460b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
147cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI bool operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
1480b57cec5SDimitry Andric
1490b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
150cb14a3feSDimitry Andric_LIBCPP_HIDE_FROM_ABI bool operator<(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
1510b57cec5SDimitry Andric
1520b57cec5SDimitry Andrictemplate <class _Tp, class _Container /*= deque<_Tp>*/>
153cb14a3feSDimitry Andricclass _LIBCPP_TEMPLATE_VIS stack {
1540b57cec5SDimitry Andricpublic:
1550b57cec5SDimitry Andric  typedef _Container container_type;
1560b57cec5SDimitry Andric  typedef typename container_type::value_type value_type;
1570b57cec5SDimitry Andric  typedef typename container_type::reference reference;
1580b57cec5SDimitry Andric  typedef typename container_type::const_reference const_reference;
1590b57cec5SDimitry Andric  typedef typename container_type::size_type size_type;
160*0fca6ea1SDimitry Andric  static_assert(is_same<_Tp, value_type>::value, "");
1610b57cec5SDimitry Andric
1620b57cec5SDimitry Andricprotected:
1630b57cec5SDimitry Andric  container_type c;
1640b57cec5SDimitry Andric
1650b57cec5SDimitry Andricpublic:
166cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack() _NOEXCEPT_(is_nothrow_default_constructible<container_type>::value) : c() {}
1670b57cec5SDimitry Andric
168cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack(const stack& __q) : c(__q.c) {}
1690b57cec5SDimitry Andric
170cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack& operator=(const stack& __q) {
171cb14a3feSDimitry Andric    c = __q.c;
172cb14a3feSDimitry Andric    return *this;
173cb14a3feSDimitry Andric  }
1740b57cec5SDimitry Andric
1750b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG
176*0fca6ea1SDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack(stack&& __q) noexcept(is_nothrow_move_constructible<container_type>::value)
1775f757f3fSDimitry Andric      : c(std::move(__q.c)) {}
1780b57cec5SDimitry Andric
179*0fca6ea1SDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack& operator=(stack&& __q) noexcept(is_nothrow_move_assignable<container_type>::value) {
180cb14a3feSDimitry Andric    c = std::move(__q.c);
181cb14a3feSDimitry Andric    return *this;
182cb14a3feSDimitry Andric  }
1830b57cec5SDimitry Andric
184cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI explicit stack(container_type&& __c) : c(std::move(__c)) {}
1850b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG
1860b57cec5SDimitry Andric
187cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI explicit stack(const container_type& __c) : c(__c) {}
1880b57cec5SDimitry Andric
1890b57cec5SDimitry Andric  template <class _Alloc>
190cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI explicit stack(const _Alloc& __a,
191349cc55cSDimitry Andric                                       __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
1920b57cec5SDimitry Andric      : c(__a) {}
1930b57cec5SDimitry Andric  template <class _Alloc>
1945f757f3fSDimitry Andric  _LIBCPP_HIDE_FROM_ABI
195cb14a3feSDimitry Andric  stack(const container_type& __c, const _Alloc& __a, __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
1960b57cec5SDimitry Andric      : c(__c, __a) {}
1970b57cec5SDimitry Andric  template <class _Alloc>
1985f757f3fSDimitry Andric  _LIBCPP_HIDE_FROM_ABI
199cb14a3feSDimitry Andric  stack(const stack& __s, const _Alloc& __a, __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
2000b57cec5SDimitry Andric      : c(__s.c, __a) {}
2010b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG
2020b57cec5SDimitry Andric  template <class _Alloc>
2035f757f3fSDimitry Andric  _LIBCPP_HIDE_FROM_ABI
204cb14a3feSDimitry Andric  stack(container_type&& __c, const _Alloc& __a, __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
2055f757f3fSDimitry Andric      : c(std::move(__c), __a) {}
2060b57cec5SDimitry Andric  template <class _Alloc>
2075f757f3fSDimitry Andric  _LIBCPP_HIDE_FROM_ABI
208cb14a3feSDimitry Andric  stack(stack&& __s, const _Alloc& __a, __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
2095f757f3fSDimitry Andric      : c(std::move(__s.c), __a) {}
2100b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG
2110b57cec5SDimitry Andric
21206c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 23
213*0fca6ea1SDimitry Andric  template <class _InputIterator, __enable_if_t<__has_input_iterator_category<_InputIterator>::value, int> = 0>
214cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack(_InputIterator __first, _InputIterator __last) : c(__first, __last) {}
21504eeddc0SDimitry Andric
21606c3fb27SDimitry Andric  template <_ContainerCompatibleRange<_Tp> _Range>
217cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack(from_range_t, _Range&& __range) : c(from_range, std::forward<_Range>(__range)) {}
21806c3fb27SDimitry Andric
21904eeddc0SDimitry Andric  template <class _InputIterator,
22004eeddc0SDimitry Andric            class _Alloc,
221*0fca6ea1SDimitry Andric            __enable_if_t<__has_input_iterator_category<_InputIterator>::value, int> = 0,
222*0fca6ea1SDimitry Andric            __enable_if_t<uses_allocator<container_type, _Alloc>::value, int>        = 0>
223cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack(_InputIterator __first, _InputIterator __last, const _Alloc& __alloc)
224cb14a3feSDimitry Andric      : c(__first, __last, __alloc) {}
22506c3fb27SDimitry Andric
22606c3fb27SDimitry Andric  template <_ContainerCompatibleRange<_Tp> _Range,
22706c3fb27SDimitry Andric            class _Alloc,
228*0fca6ea1SDimitry Andric            __enable_if_t<uses_allocator<container_type, _Alloc>::value, int> = 0>
229cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI stack(from_range_t, _Range&& __range, const _Alloc& __alloc)
23006c3fb27SDimitry Andric      : c(from_range, std::forward<_Range>(__range), __alloc) {}
23106c3fb27SDimitry Andric
23204eeddc0SDimitry Andric#endif
23304eeddc0SDimitry Andric
234*0fca6ea1SDimitry Andric  _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI bool empty() const { return c.empty(); }
235cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI size_type size() const { return c.size(); }
236cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI reference top() { return c.back(); }
237cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI const_reference top() const { return c.back(); }
2380b57cec5SDimitry Andric
239cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI void push(const value_type& __v) { c.push_back(__v); }
2400b57cec5SDimitry Andric#ifndef _LIBCPP_CXX03_LANG
241cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI void push(value_type&& __v) { c.push_back(std::move(__v)); }
2420b57cec5SDimitry Andric
24306c3fb27SDimitry Andric#  if _LIBCPP_STD_VER >= 23
24406c3fb27SDimitry Andric  template <_ContainerCompatibleRange<_Tp> _Range>
245cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI void push_range(_Range&& __range) {
246cb14a3feSDimitry Andric    if constexpr (requires(container_type& __c) { __c.append_range(std::forward<_Range>(__range)); }) {
24706c3fb27SDimitry Andric      c.append_range(std::forward<_Range>(__range));
24806c3fb27SDimitry Andric    } else {
24906c3fb27SDimitry Andric      ranges::copy(std::forward<_Range>(__range), std::back_inserter(c));
25006c3fb27SDimitry Andric    }
25106c3fb27SDimitry Andric  }
25206c3fb27SDimitry Andric#  endif
25306c3fb27SDimitry Andric
2540b57cec5SDimitry Andric  template <class... _Args>
2555f757f3fSDimitry Andric  _LIBCPP_HIDE_FROM_ABI
25606c3fb27SDimitry Andric#  if _LIBCPP_STD_VER >= 17
257cb14a3feSDimitry Andric  decltype(auto)
258cb14a3feSDimitry Andric  emplace(_Args&&... __args) {
259cb14a3feSDimitry Andric    return c.emplace_back(std::forward<_Args>(__args)...);
260cb14a3feSDimitry Andric  }
2610b57cec5SDimitry Andric#  else
262cb14a3feSDimitry Andric  void
263cb14a3feSDimitry Andric  emplace(_Args&&... __args) {
264cb14a3feSDimitry Andric    c.emplace_back(std::forward<_Args>(__args)...);
265cb14a3feSDimitry Andric  }
2660b57cec5SDimitry Andric#  endif
2670b57cec5SDimitry Andric#endif // _LIBCPP_CXX03_LANG
2680b57cec5SDimitry Andric
269cb14a3feSDimitry Andric  _LIBCPP_HIDE_FROM_ABI void pop() { c.pop_back(); }
2700b57cec5SDimitry Andric
271*0fca6ea1SDimitry Andric  _LIBCPP_HIDE_FROM_ABI void swap(stack& __s) _NOEXCEPT_(__is_nothrow_swappable_v<container_type>) {
2725f757f3fSDimitry Andric    using std::swap;
2730b57cec5SDimitry Andric    swap(c, __s.c);
2740b57cec5SDimitry Andric  }
2750b57cec5SDimitry Andric
276bdd1243dSDimitry Andric  _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI const _Container& __get_container() const { return c; }
277bdd1243dSDimitry Andric
27806c3fb27SDimitry Andric  template <class _T1, class _OtherContainer>
279cb14a3feSDimitry Andric  friend bool operator==(const stack<_T1, _OtherContainer>& __x, const stack<_T1, _OtherContainer>& __y);
2800b57cec5SDimitry Andric
28106c3fb27SDimitry Andric  template <class _T1, class _OtherContainer>
282cb14a3feSDimitry Andric  friend bool operator<(const stack<_T1, _OtherContainer>& __x, const stack<_T1, _OtherContainer>& __y);
2830b57cec5SDimitry Andric};
2840b57cec5SDimitry Andric
28506c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 17
286cb14a3feSDimitry Andrictemplate <class _Container, class = enable_if_t<!__is_allocator<_Container>::value> >
287cb14a3feSDimitry Andricstack(_Container) -> stack<typename _Container::value_type, _Container>;
2880b57cec5SDimitry Andric
2890b57cec5SDimitry Andrictemplate <class _Container,
2900b57cec5SDimitry Andric          class _Alloc,
291349cc55cSDimitry Andric          class = enable_if_t<!__is_allocator<_Container>::value>,
292cb14a3feSDimitry Andric          class = enable_if_t<uses_allocator<_Container, _Alloc>::value> >
293cb14a3feSDimitry Andricstack(_Container, _Alloc) -> stack<typename _Container::value_type, _Container>;
2940b57cec5SDimitry Andric#endif
2950b57cec5SDimitry Andric
29606c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 23
297*0fca6ea1SDimitry Andrictemplate <class _InputIterator, __enable_if_t<__has_input_iterator_category<_InputIterator>::value, int> = 0>
298cb14a3feSDimitry Andricstack(_InputIterator, _InputIterator) -> stack<__iter_value_type<_InputIterator>>;
29904eeddc0SDimitry Andric
30006c3fb27SDimitry Andrictemplate <ranges::input_range _Range>
30106c3fb27SDimitry Andricstack(from_range_t, _Range&&) -> stack<ranges::range_value_t<_Range>>;
30206c3fb27SDimitry Andric
30304eeddc0SDimitry Andrictemplate <class _InputIterator,
30404eeddc0SDimitry Andric          class _Alloc,
305*0fca6ea1SDimitry Andric          __enable_if_t<__has_input_iterator_category<_InputIterator>::value, int> = 0,
306*0fca6ea1SDimitry Andric          __enable_if_t<__is_allocator<_Alloc>::value, int>                        = 0>
307*0fca6ea1SDimitry Andricstack(_InputIterator,
308*0fca6ea1SDimitry Andric      _InputIterator,
309*0fca6ea1SDimitry Andric      _Alloc) -> stack<__iter_value_type<_InputIterator>, deque<__iter_value_type<_InputIterator>, _Alloc>>;
31006c3fb27SDimitry Andric
311*0fca6ea1SDimitry Andrictemplate <ranges::input_range _Range, class _Alloc, __enable_if_t<__is_allocator<_Alloc>::value, int> = 0>
312*0fca6ea1SDimitry Andricstack(from_range_t,
313*0fca6ea1SDimitry Andric      _Range&&,
314*0fca6ea1SDimitry Andric      _Alloc) -> stack<ranges::range_value_t<_Range>, deque<ranges::range_value_t<_Range>, _Alloc>>;
31506c3fb27SDimitry Andric
31604eeddc0SDimitry Andric#endif
31704eeddc0SDimitry Andric
3180b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
319cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) {
3200b57cec5SDimitry Andric  return __x.c == __y.c;
3210b57cec5SDimitry Andric}
3220b57cec5SDimitry Andric
3230b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
324cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator<(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) {
3250b57cec5SDimitry Andric  return __x.c < __y.c;
3260b57cec5SDimitry Andric}
3270b57cec5SDimitry Andric
3280b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
329cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) {
3300b57cec5SDimitry Andric  return !(__x == __y);
3310b57cec5SDimitry Andric}
3320b57cec5SDimitry Andric
3330b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
334cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator>(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) {
3350b57cec5SDimitry Andric  return __y < __x;
3360b57cec5SDimitry Andric}
3370b57cec5SDimitry Andric
3380b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
339cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator>=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) {
3400b57cec5SDimitry Andric  return !(__x < __y);
3410b57cec5SDimitry Andric}
3420b57cec5SDimitry Andric
3430b57cec5SDimitry Andrictemplate <class _Tp, class _Container>
344cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI bool operator<=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) {
3450b57cec5SDimitry Andric  return !(__y < __x);
3460b57cec5SDimitry Andric}
3470b57cec5SDimitry Andric
34806c3fb27SDimitry Andric#if _LIBCPP_STD_VER >= 20
34906c3fb27SDimitry Andric
35006c3fb27SDimitry Andrictemplate <class _Tp, three_way_comparable _Container>
35106c3fb27SDimitry Andric_LIBCPP_HIDE_FROM_ABI compare_three_way_result_t<_Container>
35206c3fb27SDimitry Andricoperator<=>(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y) {
35306c3fb27SDimitry Andric  // clang 16 bug: declaring `friend operator<=>` causes "use of overloaded operator '*' is ambiguous" errors
35406c3fb27SDimitry Andric  return __x.__get_container() <=> __y.__get_container();
35506c3fb27SDimitry Andric}
35606c3fb27SDimitry Andric
35706c3fb27SDimitry Andric#endif
35806c3fb27SDimitry Andric
359*0fca6ea1SDimitry Andrictemplate <class _Tp, class _Container, __enable_if_t<__is_swappable_v<_Container>, int> = 0>
360cb14a3feSDimitry Andricinline _LIBCPP_HIDE_FROM_ABI void swap(stack<_Tp, _Container>& __x, stack<_Tp, _Container>& __y)
361cb14a3feSDimitry Andric    _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) {
3620b57cec5SDimitry Andric  __x.swap(__y);
3630b57cec5SDimitry Andric}
3640b57cec5SDimitry Andric
3650b57cec5SDimitry Andrictemplate <class _Tp, class _Container, class _Alloc>
366cb14a3feSDimitry Andricstruct _LIBCPP_TEMPLATE_VIS uses_allocator<stack<_Tp, _Container>, _Alloc> : public uses_allocator<_Container, _Alloc> {
3670b57cec5SDimitry Andric};
3680b57cec5SDimitry Andric
3690b57cec5SDimitry Andric_LIBCPP_END_NAMESPACE_STD
3700b57cec5SDimitry Andric
371b3edf446SDimitry Andric_LIBCPP_POP_MACROS
372b3edf446SDimitry Andric
373bdd1243dSDimitry Andric#if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
374bdd1243dSDimitry Andric#  include <concepts>
375bdd1243dSDimitry Andric#  include <functional>
37606c3fb27SDimitry Andric#  include <type_traits>
377bdd1243dSDimitry Andric#endif
378bdd1243dSDimitry Andric
3790b57cec5SDimitry Andric#endif // _LIBCPP_STACK
380