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