| 197 | } |
| 198 | |
| 199 | bool IsNull(const uint8_t* data, uint32_t size, bool quoted) { |
| 200 | return options_.strings_can_be_null && |
| 201 | (!quoted || options_.quoted_strings_can_be_null) && |
| 202 | ValueDecoder::IsNull(data, size, false /* quoted */); |
| 203 | } |
| 204 | }; |
| 205 | |
| 206 | // |