| 223 | }; |
| 224 | |
| 225 | inline bool GetBoolean(const TJsonValue& jv, size_t index, bool* value) noexcept { |
| 226 | return jv[index].GetBoolean(value); |
| 227 | } |
| 228 | |
| 229 | inline bool GetInteger(const TJsonValue& jv, size_t index, long long* value) noexcept { |
| 230 | return jv[index].GetInteger(value); |
nothing calls this directly
no test coverage detected