| 6987 | */ |
| 6988 | template<typename InputType> |
| 6989 | static bool accept(InputType&& i, |
| 6990 | const bool ignore_comments = false) |
| 6991 | { |
| 6992 | return parser(detail::input_adapter(std::forward<InputType>(i)), nullptr, false, ignore_comments).accept(true); |
| 6993 | } |
| 6994 | |
| 6995 | template<typename IteratorType> |
| 6996 | static bool accept(IteratorType first, IteratorType last, |
nothing calls this directly
no test coverage detected