Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import java.util.List;
public class Main {
public static <T> List<T> subList(List<T> list, int fromIndex, int toIndex) {
if (list == null)
return null;
return list.subList(fromIndex, Math.min(list.size(), toIndex));
}
}