Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
GenericValue< Encoding, Allocator > Class Template Reference

Represents a JSON value. Use Value for UTF8 encoding and default allocator. More...

#include </__w/arcaneframework.github.io/arcaneframework.github.io/framework/arccore/src/common/arccore/common/internal/json/rapidjson/document.h>

Inheritance diagram for GenericValue< Encoding, Allocator >:
Collaboration diagram for GenericValue< Encoding, Allocator >:

Classes

struct  Flag
struct  String
struct  ShortString
union  Number
struct  ObjectData
struct  ArrayData
union  Data

Public Types

typedef GenericMember< Encoding, AllocatorMember
 Name-value pair in an object.
typedef Encoding EncodingType
 Encoding type from template parameter.
typedef Allocator AllocatorType
 Allocator type from template parameter.
typedef Encoding::Ch Ch
 Character type derived from Encoding.
typedef GenericStringRef< ChStringRefType
 Reference to a constant string.
typedef GenericMemberIterator< false, Encoding, Allocator >::Iterator MemberIterator
 Member iterator for iterating in object.
typedef GenericMemberIterator< true, Encoding, Allocator >::Iterator ConstMemberIterator
 Constant member iterator for iterating in object.
typedef GenericValueValueIterator
 Value iterator for iterating in array.
typedef const GenericValueConstValueIterator
 Constant value iterator for iterating in array.
typedef GenericValue< Encoding, AllocatorValueType
 Value type of itself.
typedef GenericArray< false, ValueTypeArray
typedef GenericArray< true, ValueTypeConstArray
typedef GenericObject< false, ValueTypeObject
typedef GenericObject< true, ValueTypeConstObject

Assignment operators

enum  {
  kBoolFlag = 0x0008 , kNumberFlag = 0x0010 , kIntFlag = 0x0020 , kUintFlag = 0x0040 ,
  kInt64Flag = 0x0080 , kUint64Flag = 0x0100 , kDoubleFlag = 0x0200 , kStringFlag = 0x0400 ,
  kCopyFlag = 0x0800 , kInlineStrFlag = 0x1000 , kNullFlag = kNullType , kTrueFlag = static_cast<int>(kTrueType) | static_cast<int>(kBoolFlag) ,
  kFalseFlag = static_cast<int>(kFalseType) | static_cast<int>(kBoolFlag) , kNumberIntFlag = static_cast<int>(kNumberType) | static_cast<int>(kNumberFlag | kIntFlag | kInt64Flag) , kNumberUintFlag = static_cast<int>(kNumberType) | static_cast<int>(kNumberFlag | kUintFlag | kUint64Flag | kInt64Flag) , kNumberInt64Flag = static_cast<int>(kNumberType) | static_cast<int>(kNumberFlag | kInt64Flag) ,
  kNumberUint64Flag = static_cast<int>(kNumberType) | static_cast<int>(kNumberFlag | kUint64Flag) , kNumberDoubleFlag = static_cast<int>(kNumberType) | static_cast<int>(kNumberFlag | kDoubleFlag) , kNumberAnyFlag = static_cast<int>(kNumberType) | static_cast<int>(kNumberFlag | kIntFlag | kInt64Flag | kUintFlag | kUint64Flag | kDoubleFlag) , kConstStringFlag = static_cast<int>(kStringType) | static_cast<int>(kStringFlag) ,
  kCopyStringFlag = static_cast<int>(kStringType) | static_cast<int>(kStringFlag | kCopyFlag) , kShortStringFlag = static_cast<int>(kStringType) | static_cast<int>(kStringFlag | kCopyFlag | kInlineStrFlag) , kObjectFlag = kObjectType , kArrayFlag = kArrayType ,
  kTypeMask = 0x07
}
template<typename, typename, typename>
class GenericDocument
static const SizeType kDefaultArrayCapacity = RAPIDJSON_VALUE_DEFAULT_ARRAY_CAPACITY
static const SizeType kDefaultObjectCapacity = RAPIDJSON_VALUE_DEFAULT_OBJECT_CAPACITY
Data data_
GenericValueoperator= (GenericValue &rhs) RAPIDJSON_NOEXCEPT
 Assignment with move semantics.
GenericValueoperator= (StringRefType str) RAPIDJSON_NOEXCEPT
 Assignment of constant string reference (no copy).
template<typename T>
 RAPIDJSON_DISABLEIF_RETURN ((internal::IsPointer< T >),(GenericValue &)) operator
 Assignment with primitive types.
RAPIDJSON_FORCEINLINE const ChGetStringPointer () const
RAPIDJSON_FORCEINLINE const ChSetStringPointer (const Ch *str)
RAPIDJSON_FORCEINLINE GenericValueGetElementsPointer () const
RAPIDJSON_FORCEINLINE GenericValueSetElementsPointer (GenericValue *elements)
RAPIDJSON_FORCEINLINE MemberGetMembersPointer () const
RAPIDJSON_FORCEINLINE MemberSetMembersPointer (Member *members)
RAPIDJSON_FORCEINLINE MemberDoAllocMembers (SizeType capacity, Allocator &allocator)
void DoReserveMembers (SizeType newCapacity, Allocator &allocator)
template<typename SourceAllocator>
MemberIterator DoFindMember (const GenericValue< Encoding, SourceAllocator > &name)
void DoClearMembers ()
void DoFreeMembers ()
void DoAddMember (GenericValue &name, GenericValue &value, Allocator &allocator)
MemberIterator DoRemoveMember (MemberIterator m)
MemberIterator DoEraseMembers (ConstMemberIterator first, ConstMemberIterator last)
template<typename SourceAllocator>
void DoCopyMembers (const GenericValue< Encoding, SourceAllocator > &rhs, Allocator &allocator, bool copyConstStrings)
void SetArrayRaw (GenericValue *values, SizeType count, Allocator &allocator)
void SetObjectRaw (Member *members, SizeType count, Allocator &allocator)
 Initialize this value as object with initial data, without calling destructor.
void SetStringRaw (StringRefType s) RAPIDJSON_NOEXCEPT
 Initialize this value as constant string, without calling destructor.
void SetStringRaw (StringRefType s, Allocator &allocator)
 Initialize this value as copy string with initial data, without calling destructor.
void RawAssign (GenericValue &rhs) RAPIDJSON_NOEXCEPT
 Assignment without calling destructor.
template<typename SourceAllocator>
bool StringEqual (const GenericValue< Encoding, SourceAllocator > &rhs) const
static RAPIDJSON_FORCEINLINE const ChDataString (const Data &data)
static RAPIDJSON_FORCEINLINE SizeType DataStringLength (const Data &data)

Constructors and destructor.

 GenericValue () RAPIDJSON_NOEXCEPT
 Default constructor creates a null value.
 GenericValue (Type type) RAPIDJSON_NOEXCEPT
 Constructor with JSON value type.
template<typename SourceAllocator>
 GenericValue (const GenericValue< Encoding, SourceAllocator > &rhs, Allocator &allocator, bool copyConstStrings=false)
 Explicit copy constructor (with allocator).
template<typename T>
 GenericValue (T b, RAPIDJSON_ENABLEIF((internal::IsSame< bool, T >))) RAPIDJSON_NOEXCEPT
 Constructor for boolean value.
 GenericValue (int i) RAPIDJSON_NOEXCEPT
 Constructor for int value.
 GenericValue (unsigned u) RAPIDJSON_NOEXCEPT
 Constructor for unsigned value.
 GenericValue (int64_t i64) RAPIDJSON_NOEXCEPT
 Constructor for int64_t value.
 GenericValue (uint64_t u64) RAPIDJSON_NOEXCEPT
 Constructor for uint64_t value.
 GenericValue (double d) RAPIDJSON_NOEXCEPT
 Constructor for double value.
 GenericValue (float f) RAPIDJSON_NOEXCEPT
 Constructor for float value.
 GenericValue (const Ch *s, SizeType length) RAPIDJSON_NOEXCEPT
 Constructor for constant string (i.e. do not make a copy of string).
 GenericValue (StringRefType s) RAPIDJSON_NOEXCEPT
 Constructor for constant string (i.e. do not make a copy of string).
 GenericValue (const Ch *s, SizeType length, Allocator &allocator)
 Constructor for copy-string (i.e. do make a copy of string).
 GenericValue (const Ch *s, Allocator &allocator)
 Constructor for copy-string (i.e. do make a copy of string).
 GenericValue (Array a) RAPIDJSON_NOEXCEPT
 Constructor for Array.
 GenericValue (Object o) RAPIDJSON_NOEXCEPT
 Constructor for Object.
 ~GenericValue ()
 Destructor.
 GenericValue (const GenericValue &rhs)
 Copy constructor is not permitted.

Detailed Description

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
class GenericValue< Encoding, Allocator >

Represents a JSON value. Use Value for UTF8 encoding and default allocator.

A JSON value can be one of 7 types. This class is a variant type supporting these types.

Use the Value if UTF8 and default allocator

Template Parameters
EncodingEncoding of the value. (Even non-string values need to have the same encoding in a document)
AllocatorAllocator type for allocating memory of object, array and string.

Definition at line 669 of file document.h.

Member Typedef Documentation

◆ AllocatorType

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef Allocator GenericValue< Encoding, Allocator >::AllocatorType

Allocator type from template parameter.

Definition at line 674 of file document.h.

◆ Array

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericArray<false, ValueType> GenericValue< Encoding, Allocator >::Array

Definition at line 682 of file document.h.

◆ Ch

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef Encoding::Ch GenericValue< Encoding, Allocator >::Ch

Character type derived from Encoding.

Definition at line 675 of file document.h.

◆ ConstArray

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericArray<true, ValueType> GenericValue< Encoding, Allocator >::ConstArray

Definition at line 683 of file document.h.

◆ ConstMemberIterator

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericMemberIterator<true,Encoding,Allocator>::Iterator GenericValue< Encoding, Allocator >::ConstMemberIterator

Constant member iterator for iterating in object.

Definition at line 678 of file document.h.

◆ ConstObject

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericObject<true, ValueType> GenericValue< Encoding, Allocator >::ConstObject

Definition at line 685 of file document.h.

◆ ConstValueIterator

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef const GenericValue* GenericValue< Encoding, Allocator >::ConstValueIterator

Constant value iterator for iterating in array.

Definition at line 680 of file document.h.

◆ EncodingType

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef Encoding GenericValue< Encoding, Allocator >::EncodingType

Encoding type from template parameter.

Definition at line 673 of file document.h.

◆ Member

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericMember<Encoding, Allocator> GenericValue< Encoding, Allocator >::Member

Name-value pair in an object.

Definition at line 672 of file document.h.

◆ MemberIterator

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericMemberIterator<false,Encoding,Allocator>::Iterator GenericValue< Encoding, Allocator >::MemberIterator

Member iterator for iterating in object.

Definition at line 677 of file document.h.

◆ Object

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericObject<false, ValueType> GenericValue< Encoding, Allocator >::Object

Definition at line 684 of file document.h.

◆ StringRefType

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericStringRef<Ch> GenericValue< Encoding, Allocator >::StringRefType

Reference to a constant string.

Definition at line 676 of file document.h.

◆ ValueIterator

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericValue* GenericValue< Encoding, Allocator >::ValueIterator

Value iterator for iterating in array.

Definition at line 679 of file document.h.

◆ ValueType

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
typedef GenericValue<Encoding, Allocator> GenericValue< Encoding, Allocator >::ValueType

Value type of itself.

Definition at line 681 of file document.h.

Member Enumeration Documentation

◆ anonymous enum

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
anonymous enum

Definition at line 1992 of file document.h.

Constructor & Destructor Documentation

◆ GenericValue() [1/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( )
inline

Default constructor creates a null value.

Definition at line 691 of file document.h.

Referenced by GenericValue().

Here is the caller graph for this function:

◆ GenericValue() [2/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( Type type)
inlineexplicit

Constructor with JSON value type.

This creates a Value of specified type with default content.

Parameters
typeType of the value.
Note
Default content for number is zero.

Definition at line 721 of file document.h.

◆ GenericValue() [3/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
template<typename SourceAllocator>
GenericValue< Encoding, Allocator >::GenericValue ( const GenericValue< Encoding, SourceAllocator > & rhs,
Allocator & allocator,
bool copyConstStrings = false )
inline

Explicit copy constructor (with allocator).

Creates a copy of a Value by using the given Allocator

Template Parameters
SourceAllocatorallocator of rhs
Parameters
rhsValue to copy from (read-only)
allocatorAllocator for allocating copied elements and buffers. Commonly use GenericDocument::GetAllocator().
copyConstStringsForce copying of constant strings (e.g. referencing an in-situ buffer)
See also
CopyFrom()

Definition at line 743 of file document.h.

◆ GenericValue() [4/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
template<typename T>
GenericValue< Encoding, Allocator >::GenericValue ( T b,
RAPIDJSON_ENABLEIF((internal::IsSame< bool, T >))  )
inlineexplicit

Constructor for boolean value.

Parameters
bBoolean value
Note
This constructor is limited to real boolean values and rejects implicitly converted types like arbitrary pointers. Use an explicit cast to bool, if you want to construct a boolean JSON value in such cases.

Definition at line 782 of file document.h.

◆ GenericValue() [5/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( int i)
inlineexplicit

Constructor for int value.

Definition at line 793 of file document.h.

◆ GenericValue() [6/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( unsigned u)
inlineexplicit

Constructor for unsigned value.

Definition at line 799 of file document.h.

◆ GenericValue() [7/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( int64_t i64)
inlineexplicit

Constructor for int64_t value.

Definition at line 805 of file document.h.

◆ GenericValue() [8/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( uint64_t u64)
inlineexplicit

Constructor for uint64_t value.

Definition at line 820 of file document.h.

◆ GenericValue() [9/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( double d)
inlineexplicit

Constructor for double value.

Definition at line 832 of file document.h.

◆ GenericValue() [10/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( float f)
inlineexplicit

Constructor for float value.

Definition at line 835 of file document.h.

◆ GenericValue() [11/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( const Ch * s,
SizeType length )
inline

Constructor for constant string (i.e. do not make a copy of string).

Definition at line 838 of file document.h.

◆ GenericValue() [12/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( StringRefType s)
inlineexplicit

Constructor for constant string (i.e. do not make a copy of string).

Definition at line 841 of file document.h.

◆ GenericValue() [13/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( const Ch * s,
SizeType length,
Allocator & allocator )
inline

Constructor for copy-string (i.e. do make a copy of string).

Definition at line 844 of file document.h.

◆ GenericValue() [14/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( const Ch * s,
Allocator & allocator )
inline

Constructor for copy-string (i.e. do make a copy of string).

Definition at line 847 of file document.h.

◆ GenericValue() [15/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( Array a)
inline

Constructor for Array.

Parameters
aAn array obtained by GetArray().
Note
Array is always pass-by-value.
the source array is moved into this value and the sourec array becomes empty.

Definition at line 862 of file document.h.

◆ GenericValue() [16/16]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::GenericValue ( Object o)
inline

Constructor for Object.

Parameters
oAn object obtained by GetObject().
Note
Object is always pass-by-value.
the source object is moved into this value and the sourec object becomes empty.

Definition at line 873 of file document.h.

◆ ~GenericValue()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue< Encoding, Allocator >::~GenericValue ( )
inline

Destructor.

Need to destruct elements of array, members of object, or copy-string.

Definition at line 881 of file document.h.

Referenced by operator=().

Here is the caller graph for this function:

Member Function Documentation

◆ DataString()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE const Ch * GenericValue< Encoding, Allocator >::DataString ( const Data & data)
inlinestatic

Definition at line 2108 of file document.h.

◆ DataStringLength()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE SizeType GenericValue< Encoding, Allocator >::DataStringLength ( const Data & data)
inlinestatic

Definition at line 2111 of file document.h.

◆ DoAddMember()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::DoAddMember ( GenericValue< Encoding, Allocator > & name,
GenericValue< Encoding, Allocator > & value,
Allocator & allocator )
inline

Definition at line 2305 of file document.h.

◆ DoAllocMembers()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE Member * GenericValue< Encoding, Allocator >::DoAllocMembers ( SizeType capacity,
Allocator & allocator )
inline

Definition at line 2269 of file document.h.

◆ DoClearMembers()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::DoClearMembers ( )
inline

Definition at line 2291 of file document.h.

◆ DoCopyMembers()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
template<typename SourceAllocator>
void GenericValue< Encoding, Allocator >::DoCopyMembers ( const GenericValue< Encoding, SourceAllocator > & rhs,
Allocator & allocator,
bool copyConstStrings )
inline

Definition at line 2380 of file document.h.

◆ DoEraseMembers()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
MemberIterator GenericValue< Encoding, Allocator >::DoEraseMembers ( ConstMemberIterator first,
ConstMemberIterator last )
inline

Definition at line 2345 of file document.h.

◆ DoFindMember()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
template<typename SourceAllocator>
MemberIterator GenericValue< Encoding, Allocator >::DoFindMember ( const GenericValue< Encoding, SourceAllocator > & name)
inline

Definition at line 2283 of file document.h.

◆ DoFreeMembers()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::DoFreeMembers ( )
inline

Definition at line 2297 of file document.h.

◆ DoRemoveMember()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
MemberIterator GenericValue< Encoding, Allocator >::DoRemoveMember ( MemberIterator m)
inline

Definition at line 2321 of file document.h.

◆ DoReserveMembers()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::DoReserveMembers ( SizeType newCapacity,
Allocator & allocator )
inline

Definition at line 2273 of file document.h.

◆ GetElementsPointer()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE GenericValue * GenericValue< Encoding, Allocator >::GetElementsPointer ( ) const
inline

Definition at line 2117 of file document.h.

◆ GetMembersPointer()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE Member * GenericValue< Encoding, Allocator >::GetMembersPointer ( ) const
inline

Definition at line 2119 of file document.h.

◆ GetStringPointer()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE const Ch * GenericValue< Encoding, Allocator >::GetStringPointer ( ) const
inline

Definition at line 2115 of file document.h.

◆ operator=() [1/2]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue & GenericValue< Encoding, Allocator >::operator= ( GenericValue< Encoding, Allocator > & rhs)
inline

Assignment with move semantics.

Parameters
rhsSource of the assignment. It will become a null value after assignment.

Definition at line 922 of file document.h.

◆ operator=() [2/2]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
GenericValue & GenericValue< Encoding, Allocator >::operator= ( StringRefType str)
inline

Assignment of constant string reference (no copy).

Parameters
strConstant string reference to be assigned
Note
This overload is needed to avoid clashes with the generic primitive type assignment overload below.
See also
GenericStringRef, operator=(T)

Definition at line 947 of file document.h.

◆ RAPIDJSON_DISABLEIF_RETURN()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
template<typename T>
GenericValue< Encoding, Allocator >::RAPIDJSON_DISABLEIF_RETURN ( (internal::IsPointer< T >) ,
(GenericValue< Encoding, Allocator > &)  )

Assignment with primitive types.

Template Parameters
TEither Type, int, unsigned, int64_t, uint64_t
Parameters
valueThe value to be assigned.
Note
The source type T explicitly disallows all pointer types, especially (const) Ch*. This helps avoiding implicitly referencing character strings with insufficient lifetime, use SetString(const Ch*, Allocator&) (for copying) or StringRef() (to explicitly mark the pointer as constant) instead. All other pointer types would implicitly convert to bool, use SetBool() instead. Set boolean value

◆ RawAssign()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::RawAssign ( GenericValue< Encoding, Allocator > & rhs)
inline

Assignment without calling destructor.

Definition at line 2461 of file document.h.

Referenced by operator=().

Here is the caller graph for this function:

◆ SetArrayRaw()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::SetArrayRaw ( GenericValue< Encoding, Allocator > * values,
SizeType count,
Allocator & allocator )
inline

Definition at line 2403 of file document.h.

◆ SetElementsPointer()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE GenericValue * GenericValue< Encoding, Allocator >::SetElementsPointer ( GenericValue< Encoding, Allocator > * elements)
inline

Definition at line 2118 of file document.h.

◆ SetMembersPointer()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE Member * GenericValue< Encoding, Allocator >::SetMembersPointer ( Member * members)
inline

Definition at line 2120 of file document.h.

◆ SetObjectRaw()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::SetObjectRaw ( Member * members,
SizeType count,
Allocator & allocator )
inline

Initialize this value as object with initial data, without calling destructor.

Definition at line 2416 of file document.h.

◆ SetStringPointer()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
RAPIDJSON_FORCEINLINE const Ch * GenericValue< Encoding, Allocator >::SetStringPointer ( const Ch * str)
inline

Definition at line 2116 of file document.h.

◆ SetStringRaw() [1/2]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::SetStringRaw ( StringRefType s)
inline

Initialize this value as constant string, without calling destructor.

Definition at line 2436 of file document.h.

Referenced by GenericValue(), GenericValue(), GenericValue(), GenericValue(), and GenericValue().

Here is the caller graph for this function:

◆ SetStringRaw() [2/2]

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
void GenericValue< Encoding, Allocator >::SetStringRaw ( StringRefType s,
Allocator & allocator )
inline

Initialize this value as copy string with initial data, without calling destructor.

Definition at line 2443 of file document.h.

◆ StringEqual()

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
template<typename SourceAllocator>
bool GenericValue< Encoding, Allocator >::StringEqual ( const GenericValue< Encoding, SourceAllocator > & rhs) const
inline

Definition at line 2468 of file document.h.

◆ GenericDocument

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
template<typename, typename, typename>
friend class GenericDocument
friend

Definition at line 1990 of file document.h.

Member Data Documentation

◆ data_

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
Data GenericValue< Encoding, Allocator >::data_

Definition at line 2483 of file document.h.

◆ kDefaultArrayCapacity

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
const SizeType GenericValue< Encoding, Allocator >::kDefaultArrayCapacity = RAPIDJSON_VALUE_DEFAULT_ARRAY_CAPACITY
static

Definition at line 2024 of file document.h.

◆ kDefaultObjectCapacity

template<typename Encoding, typename Allocator = RAPIDJSON_DEFAULT_ALLOCATOR>
const SizeType GenericValue< Encoding, Allocator >::kDefaultObjectCapacity = RAPIDJSON_VALUE_DEFAULT_OBJECT_CAPACITY
static

Definition at line 2025 of file document.h.


The documentation for this class was generated from the following file: