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

Method FindValue

library/cpp/expression/expression.h:38–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36 {
37 }
38 bool FindValue(const TString& name, TExpressionVariable& value) const override {
39 typename T::const_iterator it = Container.find(name);
40 if (it == Container.end()) {
41 return false;
42 }
43 value = it->second;
44 return true;
45 }
46};
47
48template <typename... Ts>

Callers 2

CalcExpressionFunction · 0.45
CalcVariantExpressionMethod · 0.45

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected