| 740 | } |
| 741 | |
| 742 | std::pair<std::string,paren_t> make_f1_string (std::string_view const& f, std::string const& a) |
| 743 | { |
| 744 | std::string r{f}; |
| 745 | r.append("(").append(a).append(")"); |
| 746 | return {r,paren_t::atom}; |
| 747 | } |
| 748 | |
| 749 | std::pair<std::string,paren_t> make_f2_string (std::string_view const& f, std::string const& a, |
| 750 | std::string const& b) |
no test coverage detected