Lines Matching defs:value
26 BASE_NS::string to_formatted_string(const CORE_NS::json::value_t<T>& value,
62 out += to_formatted_string(v.value, indentation, currentIndentation);
112 BASE_NS::string to_formatted_string(const value_t<T>& value, const int indentation, const int currentIndentation)
115 switch (value.type) {
121 append<T>(out, value.object_, indentation, currentIndentation);
125 append<T>(out, value.array_, indentation, currentIndentation);
129 CORE_NS::append<T>(out, value.string_);
133 CORE_NS::append<T>(out, value.float_);
137 out += BASE_NS::to_string(value.signed_);
141 out += BASE_NS::to_string(value.unsigned_);
145 if (value.boolean_) {
163 template BASE_NS::string to_formatted_string(const value& value, const int indentation, const int currentIndentation);
165 const standalone_value& value, const int indentation, const int currentIndentation);