true if this option was actually specified by the user
| 136 | |
| 137 | // true if this option was actually specified by the user |
| 138 | bool IsExplicit() const { |
| 139 | return nullptr == CurrentOpt_ || !OptsSeen_.empty(); |
| 140 | } |
| 141 | |
| 142 | bool CurrentIs(const TString& name) const { |
| 143 | return CurOpt()->NameIs(name); |
no test coverage detected