Home | History | Annotate | Download | only in std

Lines Matching refs:deque

4  * This file contains a generic definition of std::deque along with
12 #include <deque>
17 /* This macro defines all of the standard methods for a deque. This
21 template<> class deque<int> {
36 deque();
37 deque(unsigned int size, const T& value=T());
38 deque(const deque<T> &);
39 ~deque();
42 void swap(deque<T> &x);
62 throw std::out_of_range("deque index out of range");
70 throw std::out_of_range("deque index out of range");
78 throw std::out_of_range("deque index out of range");
81 std::deque<T> getslice(int i, int j) {
87 std::deque<T > tmp(j-i);
91 void setslice(int i, int j, const std::deque<T>& v) {
135 template<class T> class deque {