// Returns the inclusive index count between lowerBound and upperBound of all indexes with the given value
 internal int GetIndexCount(int lowerBound, int upperBound)
 {
     return(_selectedSlotsTable.GetIndexCount(lowerBound, upperBound, true));
 }