예제 #1
0
 PRInt32 Count() {
   PRInt32 total = mMax - mMin + 1;
   if (mNext)
     total += mNext->Count();
   return total;
 }
예제 #2
0
 int32_t Count() {
   int32_t total = mMax - mMin + 1;
   if (mNext)
     total += mNext->Count();
   return total;
 }