Returns a list of integers with values in the given range @param start the starting integer value (inclusive) @param to the ending integer value (exclusive) @return a list of integers containing the specified range of integers
(int start, int to)
| 146 | * @return a list of integers containing the specified range of integers |
| 147 | */ |
| 148 | public static IntList range(int start, int to) |
| 149 | { |
| 150 | return range(start, to, 1); |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Returns a list of integers with values in the given range |