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

Method Recurse

tools/archiver/main.cpp:373–379  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

371
372 template <typename T>
373 inline void Recurse(T& w) const {
374 if (IsDir(Path)) {
375 DoRecurse(w, "/");
376 } else {
377 Append(w, Path, Key.size() ? Key : Prefix + "/" + GetFile(Path));
378 }
379 }
380
381 template <typename T>
382 inline void DoRecurse(T& w, const TString& off) const {

Callers 1

mainFunction · 0.80

Calls 4

GetFileFunction · 0.85
AppendFunction · 0.70
IsDirFunction · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected