9 package javolution.util.internal.table;
23 @SuppressWarnings(
"unchecked")
26 if (n <= 1)
throw new IllegalArgumentException(
"Invalid argument n: "
29 int minSize = table.size() / n;
31 for (
int i = 0; i < n - 1; i++) {
44 if ((from < 0) || (to >
target.size()) || (from > to))
throw new IndexOutOfBoundsException(
45 "fromIndex: " + from +
", toIndex: " + to +
", size(): "
73 public E
get(
int index) {
79 public E
remove(
int index) {
98 return target().comparator();