|
| enum | TOKEN {
NONE
, CURLY_OPEN
, CURLY_CLOSE
, SQUARED_OPEN
,
SQUARED_CLOSE
, COLON
, COMMA
, STRING
,
NUMBER
, TRUE
, FALSE
, NULL
} |
| |
|
|
void | Dispose () |
| |
|
IDictionary< string, object > | ParseObject () |
| |
|
string | StringFromCache (StringSlice slice) |
| |
|
List< object > | ParseArray () |
| |
|
object | ParseValue () |
| |
|
object | ParseByToken (TOKEN token) |
| |
|
string | ParseString (bool useCache) |
| |
|
object | ParseNumber () |
| |
|
double | ParseFloatingPoint (string numberString, bool negative) |
| |
|
void | EatWhitespace () |
| |
|
char | PeekChar () |
| |
|
char | NextByte () |
| |
|
bool | ReadFalse () |
| |
|
bool | ReadTrue () |
| |
|
bool | ReadNull () |
| |
|
TOKEN | NextToken () |
| |
|
|
static bool | IsWhiteSpace (char c) |
| |
|
static int | ParseHexByte (char hexByte) |
| |
|
|
readonly string | _chars |
| |
|
readonly int | _length |
| |
|
int | _pos |
| |
|
readonly StringCacheEntry[] | _stringCache |
| |
|
int | _stringCacheCounter |
| |
The documentation for this struct was generated from the following file:
- com.beamable/Common/Runtime/SmallerJSON/SmallerJSON.FromString.cs