MCPcopy Create free account
hub / github.com/catboost/catboost / FromStringHex32

Method FromStringHex32

library/cpp/yt/misc/guid.cpp:104–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102}
103
104TGuid TGuid::FromStringHex32(TStringBuf str)
105{
106 TGuid guid;
107 if (!FromStringHex32(str, &guid)) {
108 throw TSimpleException(Sprintf("Error parsing Hex32 GUID \"%s\"",
109 str.data()));
110 }
111 return guid;
112}
113
114bool TGuid::FromStringHex32(TStringBuf str, TGuid* result)
115{

Callers

nothing calls this directly

Calls 4

TSimpleExceptionClass · 0.85
SprintfFunction · 0.85
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected