MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / Append

Method Append

Libraries/unrar/array.hpp:184–189  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

182
183
184template <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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected