| 24488 | */ |
| 24489 | template<typename InputType> |
| 24490 | static bool accept(InputType&& i, |
| 24491 | const bool ignore_comments = false) |
| 24492 | { |
| 24493 | return parser(detail::input_adapter(std::forward<InputType>(i)), nullptr, false, ignore_comments).accept(true); |
| 24494 | } |
| 24495 | |
| 24496 | template<typename IteratorType> |
| 24497 | static bool accept(IteratorType first, IteratorType last, |
nothing calls this directly
no test coverage detected