Updated binary toolchain for kernel 2.4 target (gcc 4.2.4, binutils 2.20.1)
[tomato.git] / tools / brcm / K24 / hndtools-mipsel-uclibc-4.2.4 / mipsel-linux-uclibc / include / c++ / 4.2.4 / bits / stl_stack.h
blobf5b41facb034383f171016c78b117e9f13f7df0f
1 // Stack implementation -*- C++ -*-
3 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
33 * Copyright (c) 1994
34 * Hewlett-Packard Company
36 * Permission to use, copy, modify, distribute and sell this software
37 * and its documentation for any purpose is hereby granted without fee,
38 * provided that the above copyright notice appear in all copies and
39 * that both that copyright notice and this permission notice appear
40 * in supporting documentation. Hewlett-Packard Company makes no
41 * representations about the suitability of this software for any
42 * purpose. It is provided "as is" without express or implied warranty.
45 * Copyright (c) 1996,1997
46 * Silicon Graphics Computer Systems, Inc.
48 * Permission to use, copy, modify, distribute and sell this software
49 * and its documentation for any purpose is hereby granted without fee,
50 * provided that the above copyright notice appear in all copies and
51 * that both that copyright notice and this permission notice appear
52 * in supporting documentation. Silicon Graphics makes no
53 * representations about the suitability of this software for any
54 * purpose. It is provided "as is" without express or implied warranty.
57 /** @file stl_stack.h
58 * This is an internal header file, included by other library headers.
59 * You should not attempt to use it directly.
62 #ifndef _STACK_H
63 #define _STACK_H 1
65 #include <bits/concept_check.h>
66 #include <debug/debug.h>
68 _GLIBCXX_BEGIN_NAMESPACE(std)
70 /**
71 * @brief A standard container giving FILO behavior.
73 * @ingroup Containers
74 * @ingroup Sequences
76 * Meets many of the requirements of a
77 * <a href="tables.html#65">container</a>,
78 * but does not define anything to do with iterators. Very few of the
79 * other standard container interfaces are defined.
81 * This is not a true container, but an @e adaptor. It holds
82 * another container, and provides a wrapper interface to that
83 * container. The wrapper is what enforces strict
84 * first-in-last-out %stack behavior.
86 * The second template parameter defines the type of the underlying
87 * sequence/container. It defaults to std::deque, but it can be
88 * any type that supports @c back, @c push_back, and @c pop_front,
89 * such as std::list, std::vector, or an appropriate user-defined
90 * type.
92 * Members not found in "normal" containers are @c container_type,
93 * which is a typedef for the second Sequence parameter, and @c
94 * push, @c pop, and @c top, which are standard %stack/FILO
95 * operations.
97 template<typename _Tp, typename _Sequence = deque<_Tp> >
98 class stack
100 // concept requirements
101 typedef typename _Sequence::value_type _Sequence_value_type;
102 __glibcxx_class_requires(_Tp, _SGIAssignableConcept)
103 __glibcxx_class_requires(_Sequence, _BackInsertionSequenceConcept)
104 __glibcxx_class_requires2(_Tp, _Sequence_value_type, _SameTypeConcept)
106 template<typename _Tp1, typename _Seq1>
107 friend bool
108 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
110 template<typename _Tp1, typename _Seq1>
111 friend bool
112 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
114 public:
115 typedef typename _Sequence::value_type value_type;
116 typedef typename _Sequence::reference reference;
117 typedef typename _Sequence::const_reference const_reference;
118 typedef typename _Sequence::size_type size_type;
119 typedef _Sequence container_type;
121 protected:
122 // See queue::c for notes on this name.
123 _Sequence c;
125 public:
126 // XXX removed old def ctor, added def arg to this one to match 14882
128 * @brief Default constructor creates no elements.
130 explicit
131 stack(const _Sequence& __c = _Sequence())
132 : c(__c) { }
135 * Returns true if the %stack is empty.
137 bool
138 empty() const
139 { return c.empty(); }
141 /** Returns the number of elements in the %stack. */
142 size_type
143 size() const
144 { return c.size(); }
147 * Returns a read/write reference to the data at the first
148 * element of the %stack.
150 reference
151 top()
153 __glibcxx_requires_nonempty();
154 return c.back();
158 * Returns a read-only (constant) reference to the data at the first
159 * element of the %stack.
161 const_reference
162 top() const
164 __glibcxx_requires_nonempty();
165 return c.back();
169 * @brief Add data to the top of the %stack.
170 * @param x Data to be added.
172 * This is a typical %stack operation. The function creates an
173 * element at the top of the %stack and assigns the given data
174 * to it. The time complexity of the operation depends on the
175 * underlying sequence.
177 void
178 push(const value_type& __x)
179 { c.push_back(__x); }
182 * @brief Removes first element.
184 * This is a typical %stack operation. It shrinks the %stack
185 * by one. The time complexity of the operation depends on the
186 * underlying sequence.
188 * Note that no data is returned, and if the first element's
189 * data is needed, it should be retrieved before pop() is
190 * called.
192 void
193 pop()
195 __glibcxx_requires_nonempty();
196 c.pop_back();
201 * @brief Stack equality comparison.
202 * @param x A %stack.
203 * @param y A %stack of the same type as @a x.
204 * @return True iff the size and elements of the stacks are equal.
206 * This is an equivalence relation. Complexity and semantics
207 * depend on the underlying sequence type, but the expected rules
208 * are: this relation is linear in the size of the sequences, and
209 * stacks are considered equivalent if their sequences compare
210 * equal.
212 template<typename _Tp, typename _Seq>
213 inline bool
214 operator==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
215 { return __x.c == __y.c; }
218 * @brief Stack ordering relation.
219 * @param x A %stack.
220 * @param y A %stack of the same type as @a x.
221 * @return True iff @a x is lexicographically less than @a y.
223 * This is an total ordering relation. Complexity and semantics
224 * depend on the underlying sequence type, but the expected rules
225 * are: this relation is linear in the size of the sequences, the
226 * elements must be comparable with @c <, and
227 * std::lexicographical_compare() is usually used to make the
228 * determination.
230 template<typename _Tp, typename _Seq>
231 inline bool
232 operator<(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
233 { return __x.c < __y.c; }
235 /// Based on operator==
236 template<typename _Tp, typename _Seq>
237 inline bool
238 operator!=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
239 { return !(__x == __y); }
241 /// Based on operator<
242 template<typename _Tp, typename _Seq>
243 inline bool
244 operator>(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
245 { return __y < __x; }
247 /// Based on operator<
248 template<typename _Tp, typename _Seq>
249 inline bool
250 operator<=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
251 { return !(__y < __x); }
253 /// Based on operator<
254 template<typename _Tp, typename _Seq>
255 inline bool
256 operator>=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y)
257 { return !(__x < __y); }
259 _GLIBCXX_END_NAMESPACE
261 #endif /* _STACK_H */