public TDoubleList subList(int fromIndex, int toIndex) {
   synchronized (mutex) {
     return new TSynchronizedDoubleList(list.subList(fromIndex, toIndex), mutex);
   }
 }