| 62 | class Tokens { |
| 63 | public: |
| 64 | Tokens(std::vector<std::string> tokens, bool isParsingArgv = true) |
| 65 | : fTokens(std::move(tokens)), |
| 66 | fIsParsingArgv(isParsingArgv) |
| 67 | {} |
| 68 | |
| 69 | explicit operator bool() const { |
| 70 | return fIndex < fTokens.size(); |
nothing calls this directly
no outgoing calls
no test coverage detected