| 12 | static const TStringBuf ExcludedLongNameChars = "= \t\n"; |
| 13 | |
| 14 | bool TOpt::NameIs(const TString& name) const { |
| 15 | for (const auto& next : LongNames_) { |
| 16 | if (next == name) |
| 17 | return true; |
| 18 | } |
| 19 | return false; |
| 20 | } |
| 21 | |
| 22 | bool TOpt::CharIs(char c) const { |
| 23 | for (auto next : Chars_) { |
no outgoing calls
no test coverage detected