Function GetInt
Synopsis
#include <include/rapidjson/document.h>
int GetInt() const
Description
No description yet.
Mentioned in
- Getting Started / Usage at a glance
- Tutorial / Query Value {#QueryValue}
- Tutorial / Query Array {#QueryArray}
- Tutorial / Range-based For Loop (New in v1.1.0)
- Tutorial / Querying Number {#QueryNumber}
- Pointer / Basic Usage {#BasicUsage}
- Pointer / Helper Functions {#HelperFunctions}
- Faq / Document/Value (DOM)
- Examples / tutorial.cpp
- Examples / schemavalidator.cpp
- Examples / simpledom.cpp
Source
Lines 1802-1802 in include/rapidjson/document.h.
int GetInt() const { RAPIDJSON_ASSERT(data_.f.flags & kIntFlag); return data_.n.i.i; }