| 1044 | } |
| 1045 | |
| 1046 | void TJsonValue::Swap(TJsonValue& rhs) noexcept { |
| 1047 | TJsonValue tmp(std::move(*this)); |
| 1048 | rhs.SwapWithUndefined(*this); |
| 1049 | tmp.SwapWithUndefined(rhs); |
| 1050 | } |
| 1051 | |
| 1052 | void TJsonValue::Save(IOutputStream* s) const { |
| 1053 | GetNonOrderedJsonValue().Save(s); |
no test coverage detected