| 87 | }; |
| 88 | |
| 89 | inline auto stringImpl(std::string const& cs) |
| 90 | -> Parser<std::string, StringParser> |
| 91 | { |
| 92 | return toParser || toFunc<> | StringParser{cs}; |
| 93 | } |
| 94 | |
| 95 | constexpr auto string = toFunc<> || [](std::string const& cs) |
| 96 | { |
no outgoing calls
no test coverage detected