| 8208 | typename Context, |
| 8209 | typename SkipParser> |
| 8210 | bool call( |
| 8211 | Iter & first, |
| 8212 | Sentinel last, |
| 8213 | Context const & context, |
| 8214 | SkipParser const & skip, |
| 8215 | detail::flags flags, |
| 8216 | bool & success) const |
| 8217 | { |
| 8218 | bool retval{}; |
| 8219 | call(first, last, context, skip, flags, success, retval); |
| 8220 | return retval; |
| 8221 | } |
| 8222 | |
| 8223 | template< |
| 8224 | typename Iter, |
nothing calls this directly
no test coverage detected