| 409 | } |
| 410 | |
| 411 | void ArrayBase::RemoveElement(int inPos) |
| 412 | { |
| 413 | if (inPos<length) |
| 414 | { |
| 415 | int s = GetElementSize(); |
| 416 | memmove(mBase + inPos*s, mBase+inPos*s + s, (length-inPos-1)*s ); |
| 417 | resize(length-1); |
| 418 | } |
| 419 | |
| 420 | } |
| 421 | |
| 422 | void ArrayBase::Concat(ArrayBase *outResult,const char *inSecond,int inLen) |
| 423 | { |
nothing calls this directly
no test coverage detected