| 8442 | typename Context, |
| 8443 | typename SkipParser> |
| 8444 | T call( |
| 8445 | Iter & first, |
| 8446 | Sentinel last, |
| 8447 | Context const & context, |
| 8448 | SkipParser const & skip, |
| 8449 | detail::flags flags, |
| 8450 | bool & success) const |
| 8451 | { |
| 8452 | T retval{}; |
| 8453 | call(first, last, context, skip, flags, success, retval); |
| 8454 | return retval; |
| 8455 | } |
| 8456 | |
| 8457 | template< |
| 8458 | typename Iter, |
nothing calls this directly
no test coverage detected