| 9439 | auto operator+=( T const &other ) -> Parser & { return operator|=( other ); } |
| 9440 | template<typename T> |
| 9441 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 9442 | |
| 9443 | auto getHelpColumns() const -> std::vector<HelpColumns> { |
| 9444 | std::vector<HelpColumns> cols; |
nothing calls this directly
no outgoing calls
no test coverage detected