Home | History | Annotate | Download | only in inc

Lines Matching refs:T2

34 template <typename T,typename T2>
40 T2 data2;
43 node(T t, T2 t2,node* p, node* n) :
44 data(t), data2(t2), prev(p), next(n) {}
50 static Map<T,T2> *m_self;
55 void insert(T,T2);
58 T2 find(T); // Return VALUE
60 T2 begin(); //give the first ele
76 template <typename T,typename T2>
77 T2 Map<T,T2>::find(T d1)
91 template <typename T,typename T2>
92 T Map<T,T2>::find_ele(T d1)
106 template <typename T,typename T2>
107 T2 Map<T,T2>::begin()
117 template <typename T,typename T2>
118 void Map<T,T2>::show()
128 template <typename T,typename T2>
129 int Map<T,T2>::size()
141 template <typename T,typename T2>
142 void Map<T,T2>::insert(T data, T2 data2)
157 template <typename T,typename T2>
158 bool Map<T,T2>::erase(T d)
213 template <typename T,typename T2>
214 bool Map<T,T2>::eraseall()
230 template <typename T,typename T2>
231 bool Map<T,T2>::isempty()