We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebdf7ba commit e1dd4cbCopy full SHA for e1dd4cb
vector/src/main/java/org/apache/arrow/vector/complex/RunEndEncodedVector.java
@@ -836,7 +836,8 @@ public static class RangeIterator {
836
* @param runEndEncodedVector The vector to iterate over
837
* @param startIndex The logical start index of the range (inclusive)
838
* @param length The number of values to include in the range
839
- * @throws IllegalArgumentException if startIndex is negative or (startIndex + length) exceeds vector bounds
+ * @throws IllegalArgumentException if startIndex is negative or (startIndex + length) exceeds
840
+ * vector bounds
841
*/
842
public RangeIterator(RunEndEncodedVector runEndEncodedVector, int startIndex, int length) {
843
int rangeEnd = startIndex + length;
0 commit comments