|
| CUTF8String | uLang::EscapeJSON (const CUTF8StringView &RawText) |
| |
| CUTF8String | uLang::EscapeJSON (const UTF8Char Ch) |
| | This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
| |
| bool | uLang::FromJSON (const JSONValue &JSON, bool *Value) |
| |
| bool | uLang::FromJSON (const JSONValue &JSON, int *Value) |
| |
| bool | uLang::FromJSON (const JSONValue &JSON, uint32_t *Value) |
| |
| bool | uLang::FromJSON (const JSONValue &JSON, uint64_t *Value) |
| |
| bool | uLang::FromJSON (const JSONValue &JSON, CUTF8String *Value) |
| |
| bool | uLang::FromJSON (const JSONValue &JSON, CUTF8StringView *Value) |
| |
| template<class T > |
| bool | uLang::FromJSON (const JSONValue &JSON, TOptional< T > *OptionalValue) |
| |
| template<class T > |
| bool | uLang::FromJSON (const JSONValue &JSON, TArray< T > *ArrayValue) |
| |
| template<class T > |
| bool | uLang::FromJSON (const JSONValue &JSON, const char *MemberName, T *MemberValue, TOptional< bool > bRequired=EResult::Unspecified) |
| |
| bool | uLang::ToJSON (bool Value, JSONValue *JSON, JSONMemoryPoolAllocator &) |
| |
| bool | uLang::ToJSON (int Value, JSONValue *JSON, JSONMemoryPoolAllocator &) |
| |
| bool | uLang::ToJSON (uint32_t Value, JSONValue *JSON, JSONMemoryPoolAllocator &) |
| |
| bool | uLang::ToJSON (CUTF8StringView Value, JSONValue *JSON, JSONMemoryPoolAllocator &Allocator) |
| |
| template<class T > |
| bool | uLang::ToJSON (const TOptional< T > &OptionalValue, JSONValue *JSON, JSONMemoryPoolAllocator &Allocator) |
| |
| template<class T > |
| bool | uLang::ToJSON (const TArray< T > &ArrayValue, JSONValue *JSON, JSONMemoryPoolAllocator &Allocator) |
| |
| template<class T > |
| bool | uLang::ToJSON (const T &MemberValue, const char *MemberName, JSONValue *JSON, JSONMemoryPoolAllocator &Allocator) |
| |
| template<class T > |
| bool | uLang::ToJSON (const TOptional< T > &MemberValue, const char *MemberName, JSONValue *JSON, JSONMemoryPoolAllocator &Allocator) |
| |