| 160 | // Reset buffer size, but preserve already allocated memory if any, |
| 161 | // so we can reuse it without wasting time to allocation. |
| 162 | template <class T> void Array<T>::SoftReset() |
| 163 | { |
| 164 | BufSize=0; |
| 165 | } |
| 166 | |
| 167 | |
| 168 | template <class T> void Array<T>::operator =(Array<T> &Src) |
no outgoing calls
no test coverage detected