return;
if ((i < 0) || (i >= cols))
throw new IndexOutOfBoundsException(ErrorMessages.invalidSlice(this, 1, i));
if ((j < 0) || (j >= cols))
throw new IndexOutOfBoundsException(ErrorMessages.invalidSlice(this, 1, j));
AVector a = unsafeGetVec(i);
AVector b = unsafeGetVec(j);
unsafeSetVec(i, b);
unsafeSetVec(j, a);
}