(int fromIndex, int toIndex)
| 527 | } |
| 528 | |
| 529 | @Override |
| 530 | public List<Float> subList(int fromIndex, int toIndex) { |
| 531 | int size = size(); |
| 532 | checkPositionIndexes(fromIndex, toIndex, size); |
| 533 | if (fromIndex == toIndex) { |
| 534 | return Collections.emptyList(); |
| 535 | } |
| 536 | return new FloatArrayAsList(array, start + fromIndex, start + toIndex); |
| 537 | } |
| 538 | |
| 539 | @Override |
| 540 | public boolean equals(@Nullable Object object) { |
nothing calls this directly
no test coverage detected