Creates a new index table of a specified size that is in linear order. @param size the size of the index table to create
(int size)
| 67 | * @param size the size of the index table to create |
| 68 | */ |
| 69 | public IndexTable(int size) |
| 70 | { |
| 71 | index = new IntList(size); |
| 72 | ListUtils.addRange(index, 0, size, 1); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Creates a new index table based on the given array. The array will not be altered. |
nothing calls this directly
no test coverage detected