@ExplodeLoop
@SlowPath
private void extendVectorsToSameLength(RStringVector[] stringVectors, int desiredLength) {
for (int i = 0; i < stringVectorsAmount; i++) {
RStringVector stringVector = stringVectors[i];
int length = stringVector.getLength();
if (length < desiredLength) {
stringVectors[i] = extendVector(stringVector, length, desiredLength);
}
}
}