/// <summary>
 /// Report the number of items in the specified range of the wrapped collection
 /// </summary>
 /// <param name="bot"></param>
 /// <param name="top"></param>
 /// <returns></returns>
 public int CountFromTo(T bot, T top)
 {
     return(indexedsorted.CountFromTo(bot, top));
 }