mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 02:58:02 +02:00
Improvements to Number parsing
This commit is contained in:
parent
4c65652955
commit
5d28f8e1f0
10 changed files with 418 additions and 90 deletions
|
@ -7,11 +7,12 @@ namespace System
|
|||
{
|
||||
case Ok;
|
||||
case NoValue;
|
||||
case Overflow;
|
||||
case InvalidChar(uint partialResult);
|
||||
}
|
||||
|
||||
public const uint64 MaxValue = (sizeof(uint) == 8) ? 0xFFFFFFFFFFFFFFFFUL : 0xFFFFFFFFL;
|
||||
public const uint64 MinValue = 0;
|
||||
public const uint MaxValue = (sizeof(uint) == 8) ? 0xFFFFFFFFFFFFFFFFUL : 0xFFFFFFFFL;
|
||||
public const uint MinValue = 0;
|
||||
|
||||
public bool IsNull()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue