| 23225 | */ |
| 23226 | template<typename InputType> |
| 23227 | static bool accept(InputType&& i, |
| 23228 | const bool ignore_comments = false) |
| 23229 | { |
| 23230 | return parser(detail::input_adapter(std::forward<InputType>(i)), nullptr, false, ignore_comments).accept(true); |
| 23231 | } |
| 23232 | |
| 23233 | template<typename IteratorType> |
| 23234 | static bool accept(IteratorType first, IteratorType last, |
no test coverage detected