| 3151 | typename Context, |
| 3152 | typename SkipParser> |
| 3153 | auto call( |
| 3154 | Iter & first, |
| 3155 | Sentinel last, |
| 3156 | Context const & context, |
| 3157 | SkipParser const & skip, |
| 3158 | detail::flags flags, |
| 3159 | bool & success) const |
| 3160 | { |
| 3161 | using attr_t = decltype(parser_.call( |
| 3162 | first, last, context, skip, flags, success)); |
| 3163 | auto retval = detail::make_sequence_of<attr_t>(); |
| 3164 | call(first, last, context, skip, flags, success, retval); |
| 3165 | return retval; |
| 3166 | } |
| 3167 | |
| 3168 | template< |
| 3169 | typename Iter, |
nothing calls this directly
no test coverage detected