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

Method FillArray

library/cpp/yconf/conf.cpp:725–738  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

723}
724
725bool TYandexConfig::Directives::FillArray(TStringBuf key, TVector<TString>& values) const {
726 const_iterator I = find(key);
727
728 if (I == end()) {
729 return false;
730 }
731
732 if ((*I).second != nullptr) {
733 Split((*I).second, " ,\t\r", values);
734 return true;
735 }
736
737 return false;
738}
739
740void TYandexConfig::Directives::Clear() {
741 if (strict) {

Callers

nothing calls this directly

Calls 3

findFunction · 0.50
endFunction · 0.50
SplitFunction · 0.50

Tested by

no test coverage detected