| 205 | |
| 206 | template <class T> |
| 207 | void Set(const T& t) { |
| 208 | if (Access(S.top()).IsArray()) { |
| 209 | Access(S.top()).AppendValue(t); |
| 210 | } else { |
| 211 | Access(S.top()) = t; |
| 212 | S.pop(); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | bool Null() { |
| 217 | Set(NJson::JSON_NULL); |
nothing calls this directly
no test coverage detected