| 43 | TStringInput& operator=(TStringInput&&) noexcept = default; |
| 44 | |
| 45 | inline void Swap(TStringInput& s) noexcept { |
| 46 | DoSwap(S_, s.S_); |
| 47 | DoSwap(Pos_, s.Pos_); |
| 48 | } |
| 49 | |
| 50 | protected: |
| 51 | size_t DoNext(const void** ptr, size_t len) override; |
no test coverage detected