| 182 | |
| 183 | |
| 184 | template <class T> void Array<T>::Append(T *Items,size_t Count) |
| 185 | { |
| 186 | size_t CurSize=Size(); |
| 187 | Add(Count); |
| 188 | memcpy(Buffer+CurSize,Items,Count*sizeof(T)); |
| 189 | } |
| 190 | |
| 191 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected