Assignment operators
Synopses
Declared in <bdljsn_json.h>
Assign to this object the value of the specified rhs object, and return a reference providing modifiable access to this object.
JsonObject&
operator=(JsonObject const& rhs);
Assign to this object by moving from the specified rhs.
Assign to this object from the specified memberInitializers.
JsonObject&
operator=(std::initializer_list<JsonObject_MemberInitializer> memberInitializers);
Return Value
a reference providing modifiable access to this object
Parameters
Name |
Description |
rhs |
source object |
memberInitializers |
initializer‐list of members |
Created with MrDocs