| 8299 | typename Context, |
| 8300 | typename SkipParser> |
| 8301 | T call( |
| 8302 | Iter & first, |
| 8303 | Sentinel last, |
| 8304 | Context const & context, |
| 8305 | SkipParser const & skip, |
| 8306 | detail::flags flags, |
| 8307 | bool & success) const |
| 8308 | { |
| 8309 | T retval{}; |
| 8310 | call(first, last, context, skip, flags, success, retval); |
| 8311 | return retval; |
| 8312 | } |
| 8313 | |
| 8314 | template< |
| 8315 | typename Iter, |
nothing calls this directly
no test coverage detected