| 483 | { return base_list::push_back((void *) a, mem_root); } |
| 484 | inline bool push_front(T *a) { return base_list::push_front((void *) a); } |
| 485 | inline T* head() {return (T*) base_list::head(); } |
| 486 | inline T** head_ref() {return (T**) base_list::head_ref(); } |
| 487 | inline T* pop() {return (T*) base_list::pop(); } |
| 488 | inline void concat(List<T> *list) { base_list::concat(list); } |
no outgoing calls
no test coverage detected