123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- // -*- C++ -*-
- //===----------------------------------------------------------------------===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- #ifndef _LIBCPP_STACK
- #define _LIBCPP_STACK
- /*
- stack synopsis
- namespace std
- {
- template <class T, class Container = deque<T>>
- class stack
- {
- public:
- typedef Container container_type;
- typedef typename container_type::value_type value_type;
- typedef typename container_type::reference reference;
- typedef typename container_type::const_reference const_reference;
- typedef typename container_type::size_type size_type;
- protected:
- container_type c;
- public:
- stack() = default;
- ~stack() = default;
- stack(const stack& q) = default;
- stack(stack&& q) = default;
- stack& operator=(const stack& q) = default;
- stack& operator=(stack&& q) = default;
- explicit stack(const container_type& c);
- explicit stack(container_type&& c);
- template <class InputIterator> stack(InputIterator first, InputIterator last); // since C++23
- template <class Alloc> explicit stack(const Alloc& a);
- template <class Alloc> stack(const container_type& c, const Alloc& a);
- template <class Alloc> stack(container_type&& c, const Alloc& a);
- template <class Alloc> stack(const stack& c, const Alloc& a);
- template <class Alloc> stack(stack&& c, const Alloc& a);
- template<class InputIterator, class Alloc>
- stack(InputIterator first, InputIterator last, const Alloc&); // since C++23
- bool empty() const;
- size_type size() const;
- reference top();
- const_reference top() const;
- void push(const value_type& x);
- void push(value_type&& x);
- template <class... Args> reference emplace(Args&&... args); // reference in C++17
- void pop();
- void swap(stack& c) noexcept(is_nothrow_swappable_v<Container>)
- };
- template<class Container>
- stack(Container) -> stack<typename Container::value_type, Container>; // C++17
- template<class InputIterator>
- stack(InputIterator, InputIterator) -> stack<iter-value-type<InputIterator>>; // since C++23
- template<class Container, class Allocator>
- stack(Container, Allocator) -> stack<typename Container::value_type, Container>; // C++17
- template<class InputIterator, class Allocator>
- stack(InputIterator, InputIterator, Allocator)
- -> stack<iter-value-type<InputIterator>,
- deque<iter-value-type<InputIterator>, Allocator>>; // since C++23
- template <class T, class Container>
- bool operator==(const stack<T, Container>& x, const stack<T, Container>& y);
- template <class T, class Container>
- bool operator< (const stack<T, Container>& x, const stack<T, Container>& y);
- template <class T, class Container>
- bool operator!=(const stack<T, Container>& x, const stack<T, Container>& y);
- template <class T, class Container>
- bool operator> (const stack<T, Container>& x, const stack<T, Container>& y);
- template <class T, class Container>
- bool operator>=(const stack<T, Container>& x, const stack<T, Container>& y);
- template <class T, class Container>
- bool operator<=(const stack<T, Container>& x, const stack<T, Container>& y);
- template <class T, class Container>
- void swap(stack<T, Container>& x, stack<T, Container>& y)
- noexcept(noexcept(x.swap(y)));
- } // std
- */
- #include <__assert> // all public C++ headers provide the assertion handler
- #include <__config>
- #include <__iterator/iterator_traits.h>
- #include <__memory/uses_allocator.h>
- #include <__utility/forward.h>
- #include <deque>
- #include <type_traits>
- #include <version>
- // standard-mandated includes
- // [stack.syn]
- #include <compare>
- #include <initializer_list>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- # pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_STD
- template <class _Tp, class _Container = deque<_Tp> > class _LIBCPP_TEMPLATE_VIS stack;
- template <class _Tp, class _Container>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
- template <class _Tp, class _Container>
- _LIBCPP_INLINE_VISIBILITY
- bool
- operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y);
- template <class _Tp, class _Container /*= deque<_Tp>*/>
- class _LIBCPP_TEMPLATE_VIS stack
- {
- public:
- typedef _Container container_type;
- typedef typename container_type::value_type value_type;
- typedef typename container_type::reference reference;
- typedef typename container_type::const_reference const_reference;
- typedef typename container_type::size_type size_type;
- static_assert((is_same<_Tp, value_type>::value), "" );
- protected:
- container_type c;
- public:
- _LIBCPP_INLINE_VISIBILITY
- stack()
- _NOEXCEPT_(is_nothrow_default_constructible<container_type>::value)
- : c() {}
- _LIBCPP_INLINE_VISIBILITY
- stack(const stack& __q) : c(__q.c) {}
- _LIBCPP_INLINE_VISIBILITY
- stack& operator=(const stack& __q) {c = __q.c; return *this;}
- #ifndef _LIBCPP_CXX03_LANG
- _LIBCPP_INLINE_VISIBILITY
- stack(stack&& __q)
- _NOEXCEPT_(is_nothrow_move_constructible<container_type>::value)
- : c(_VSTD::move(__q.c)) {}
- _LIBCPP_INLINE_VISIBILITY
- stack& operator=(stack&& __q)
- _NOEXCEPT_(is_nothrow_move_assignable<container_type>::value)
- {c = _VSTD::move(__q.c); return *this;}
- _LIBCPP_INLINE_VISIBILITY
- explicit stack(container_type&& __c) : c(_VSTD::move(__c)) {}
- #endif // _LIBCPP_CXX03_LANG
- _LIBCPP_INLINE_VISIBILITY
- explicit stack(const container_type& __c) : c(__c) {}
- template <class _Alloc>
- _LIBCPP_INLINE_VISIBILITY
- explicit stack(const _Alloc& __a,
- __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
- : c(__a) {}
- template <class _Alloc>
- _LIBCPP_INLINE_VISIBILITY
- stack(const container_type& __c, const _Alloc& __a,
- __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
- : c(__c, __a) {}
- template <class _Alloc>
- _LIBCPP_INLINE_VISIBILITY
- stack(const stack& __s, const _Alloc& __a,
- __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
- : c(__s.c, __a) {}
- #ifndef _LIBCPP_CXX03_LANG
- template <class _Alloc>
- _LIBCPP_INLINE_VISIBILITY
- stack(container_type&& __c, const _Alloc& __a,
- __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
- : c(_VSTD::move(__c), __a) {}
- template <class _Alloc>
- _LIBCPP_INLINE_VISIBILITY
- stack(stack&& __s, const _Alloc& __a,
- __enable_if_t<uses_allocator<container_type, _Alloc>::value>* = 0)
- : c(_VSTD::move(__s.c), __a) {}
- #endif // _LIBCPP_CXX03_LANG
- #if _LIBCPP_STD_VER > 20
- template <class _InputIterator,
- class = __enable_if_t<__is_cpp17_input_iterator<_InputIterator>::value>>
- _LIBCPP_HIDE_FROM_ABI
- stack(_InputIterator __first, _InputIterator __last) : c(__first, __last) {}
- template <class _InputIterator,
- class _Alloc,
- class = __enable_if_t<__is_cpp17_input_iterator<_InputIterator>::value>,
- class = __enable_if_t<uses_allocator<container_type, _Alloc>::value>>
- _LIBCPP_HIDE_FROM_ABI
- stack(_InputIterator __first, _InputIterator __last, const _Alloc& __alloc) : c(__first, __last, __alloc) {}
- #endif
- _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
- bool empty() const {return c.empty();}
- _LIBCPP_INLINE_VISIBILITY
- size_type size() const {return c.size();}
- _LIBCPP_INLINE_VISIBILITY
- reference top() {return c.back();}
- _LIBCPP_INLINE_VISIBILITY
- const_reference top() const {return c.back();}
- _LIBCPP_INLINE_VISIBILITY
- void push(const value_type& __v) {c.push_back(__v);}
- #ifndef _LIBCPP_CXX03_LANG
- _LIBCPP_INLINE_VISIBILITY
- void push(value_type&& __v) {c.push_back(_VSTD::move(__v));}
- template <class... _Args>
- _LIBCPP_INLINE_VISIBILITY
- #if _LIBCPP_STD_VER > 14
- decltype(auto) emplace(_Args&&... __args)
- { return c.emplace_back(_VSTD::forward<_Args>(__args)...);}
- #else
- void emplace(_Args&&... __args)
- { c.emplace_back(_VSTD::forward<_Args>(__args)...);}
- #endif
- #endif // _LIBCPP_CXX03_LANG
- _LIBCPP_INLINE_VISIBILITY
- void pop() {c.pop_back();}
- _LIBCPP_INLINE_VISIBILITY
- void swap(stack& __s)
- _NOEXCEPT_(__is_nothrow_swappable<container_type>::value)
- {
- using _VSTD::swap;
- swap(c, __s.c);
- }
- _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI const _Container& __get_container() const { return c; }
- template <class T1, class _C1>
- friend
- bool
- operator==(const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
- template <class T1, class _C1>
- friend
- bool
- operator< (const stack<T1, _C1>& __x, const stack<T1, _C1>& __y);
- };
- #if _LIBCPP_STD_VER > 14
- template<class _Container,
- class = enable_if_t<!__is_allocator<_Container>::value>
- >
- stack(_Container)
- -> stack<typename _Container::value_type, _Container>;
- template<class _Container,
- class _Alloc,
- class = enable_if_t<!__is_allocator<_Container>::value>,
- class = enable_if_t<uses_allocator<_Container, _Alloc>::value>
- >
- stack(_Container, _Alloc)
- -> stack<typename _Container::value_type, _Container>;
- #endif
- #if _LIBCPP_STD_VER > 20
- template<class _InputIterator,
- class = __enable_if_t<__is_cpp17_input_iterator<_InputIterator>::value>>
- stack(_InputIterator, _InputIterator)
- -> stack<__iter_value_type<_InputIterator>>;
- template<class _InputIterator,
- class _Alloc,
- class = __enable_if_t<__is_cpp17_input_iterator<_InputIterator>::value>,
- class = __enable_if_t<__is_allocator<_Alloc>::value>>
- stack(_InputIterator, _InputIterator, _Alloc)
- -> stack<__iter_value_type<_InputIterator>, deque<__iter_value_type<_InputIterator>, _Alloc>>;
- #endif
- template <class _Tp, class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator==(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
- {
- return __x.c == __y.c;
- }
- template <class _Tp, class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator< (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
- {
- return __x.c < __y.c;
- }
- template <class _Tp, class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator!=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
- {
- return !(__x == __y);
- }
- template <class _Tp, class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator> (const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
- {
- return __y < __x;
- }
- template <class _Tp, class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator>=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
- {
- return !(__x < __y);
- }
- template <class _Tp, class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- bool
- operator<=(const stack<_Tp, _Container>& __x, const stack<_Tp, _Container>& __y)
- {
- return !(__y < __x);
- }
- template <class _Tp, class _Container>
- inline _LIBCPP_INLINE_VISIBILITY
- __enable_if_t<__is_swappable<_Container>::value, void>
- swap(stack<_Tp, _Container>& __x, stack<_Tp, _Container>& __y)
- _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
- {
- __x.swap(__y);
- }
- template <class _Tp, class _Container, class _Alloc>
- struct _LIBCPP_TEMPLATE_VIS uses_allocator<stack<_Tp, _Container>, _Alloc>
- : public uses_allocator<_Container, _Alloc>
- {
- };
- _LIBCPP_END_NAMESPACE_STD
- #if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
- # include <concepts>
- # include <functional>
- #endif
- #endif // _LIBCPP_STACK
|