| 17 | } // namespace |
| 18 | |
| 19 | TString TGUID::AsGuidString() const { |
| 20 | TStringBuilder s; |
| 21 | s.reserve(50); |
| 22 | s << Hex(dw[0], 0) << '-' << Hex(dw[1], 0) << '-' << Hex(dw[2], 0) << '-' << Hex(dw[3], 0); |
| 23 | LowerCaseHex(s); |
| 24 | return std::move(s); |
| 25 | } |
| 26 | |
| 27 | TString TGUID::AsUuidString() const { |
| 28 | TStringBuilder s; |
no test coverage detected