Definition at line 1065 of file Number.cs.
1066 {
1067 if (unit >= tenKappa || tenKappa - unit <= unit)
1068 {
1069 return false;
1070 }
1071 if (tenKappa - rest > rest && tenKappa - 2 * rest >= 2 * unit)
1072 {
1073 return true;
1074 }
1075 if (rest > unit && (tenKappa <= rest - unit || tenKappa - (rest - unit) <= rest - unit))
1076 {
1079 while (num > 0 &&
buffer[num] == 58)
1080 {
1083 num--;
1084 }
1086 {
1088 kappa++;
1089 }
1090 return true;
1091 }
1092 return false;
1093 }
References System.buffer, and System.length.
Referenced by System.Number.Grisu3.TryDigitGenCounted().