| 159 | } |
| 160 | |
| 161 | inline const T* GetFirst() const { return root.next->data; } |
| 162 | inline const T* GetLast() const { return root.prev->data; } |
| 163 | inline T* GetFirst() { return root.next->data; } |
| 164 | inline T* GetLast() { return root.prev->data; } |
no outgoing calls
no test coverage detected