static <A> L<A> syncNewSubList(L<A> l, int startIndex, int endIndex) {
  ret newSubList(l, startIndex, endIndex);
}



static <A> L<A> syncNewSubList(L<A> l, int startIndex) {
  ret newSubList(l, startIndex);
}