Returns a tuple containing the specified range of elements. @param fromIndex the start index, inclusive @param toIndex the end index, exclusive @return the requested subtuple
(int fromIndex, int toIndex)
| 118 | * @return the requested subtuple |
| 119 | */ |
| 120 | public Tuple<E> subTuple(int fromIndex, int toIndex) { |
| 121 | return (Tuple<E>) subList(fromIndex, toIndex); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * {@inheritDoc} |