(final int end)
| 2230 | } |
| 2231 | |
| 2232 | public static List<Integer> range(final int end) { |
| 2233 | return new AbstractList<Integer>() { |
| 2234 | @Override public int size() { |
| 2235 | return end; |
| 2236 | } |
| 2237 | |
| 2238 | @Override public Integer get(int index) { |
| 2239 | return index; |
| 2240 | } |
| 2241 | }; |
| 2242 | } |
| 2243 | |
| 2244 | public static List<Integer> range(final int start, final int end) { |
| 2245 | return new AbstractList<Integer>() { |
no outgoing calls
no test coverage detected