| 230 | }; |
| 231 | |
| 232 | inline bool GetBoolean(const TJsonValue& jv, size_t index, bool* value) noexcept { |
| 233 | return jv[index].GetBoolean(value); |
| 234 | } |
| 235 | |
| 236 | inline bool GetInteger(const TJsonValue& jv, size_t index, long long* value) noexcept { |
| 237 | return jv[index].GetInteger(value); |
nothing calls this directly
no test coverage detected