| 6301 | auto operator+=( T const &other ) -> Parser & { return operator|=( other ); } |
| 6302 | template<typename T> |
| 6303 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 6304 | |
| 6305 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 6306 | std::vector<HelpColumns> cols; |
nothing calls this directly
no outgoing calls
no test coverage detected