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

Class TItem

tools/enum_parser/parse_enum/parse_enum.h:14–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12public:
13
14 struct TItem {
15 TMaybe<TString> Value;
16 TString CppName;
17 TVector<TString> Aliases;
18 TString CommentText;
19
20 void Clear() {
21 *this = TItem();
22 }
23
24 void NormalizeValue() {
25 if (!Value)
26 return;
27 StripInPlace(*Value);
28 }
29
30 };
31
32 // vector is to preserve declaration order
33 typedef TVector<TItem> TItems;

Callers 1

ClearMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected