Exemplo n.º 1
0
 PRInt32 Count() {
   PRInt32 total = mMax - mMin + 1;
   if (mNext)
     total += mNext->Count();
   return total;
 }
Exemplo n.º 2
0
 int32_t Count() {
   int32_t total = mMax - mMin + 1;
   if (mNext)
     total += mNext->Count();
   return total;
 }