| 968 | } |
| 969 | |
| 970 | void TJsonValue::Swap(TJsonValue& rhs) noexcept { |
| 971 | TJsonValue tmp(std::move(*this)); |
| 972 | rhs.SwapWithUndefined(*this); |
| 973 | tmp.SwapWithUndefined(rhs); |
| 974 | } |
| 975 | |
| 976 | void TJsonValue::Save(IOutputStream* s) const { |
| 977 | ::Save(s, static_cast<ui8>(Type)); |
no test coverage detected