| 23309 | */ |
| 23310 | template<typename InputType> |
| 23311 | static bool accept(InputType&& i, |
| 23312 | const bool ignore_comments = false) |
| 23313 | { |
| 23314 | return parser(detail::input_adapter(std::forward<InputType>(i)), nullptr, false, ignore_comments).accept(true); |
| 23315 | } |
| 23316 | |
| 23317 | template<typename IteratorType> |
| 23318 | static bool accept(IteratorType first, IteratorType last, |
no test coverage detected