Function SetInt
Synopsis
#include <include/rapidjson/document.h>
GenericValue & SetInt(int i)
Description
No description yet.
Mentioned in
- Getting Started / Usage at a glance
- Tutorial / Change Value Type {#ChangeValueType}
- Tutorial / Move semantics and temporary values {#TemporaryValues}
- Pointer / Basic Usage {#BasicUsage}
- Pointer / Helper Functions {#HelperFunctions}
- Examples / sortkeys.cpp
- Examples / simpledom.cpp
Source
Lines 1826-1826 in include/rapidjson/document.h.
GenericValue& SetInt(int i) { this->~GenericValue(); new (this) GenericValue(i); return *this; }