MCPcopy Create free account
hub / github.com/boostorg/parser / call

Method call

include/boost/parser/parser.hpp:3317–3330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3315 typename Context,
3316 typename SkipParser>
3317 auto call(
3318 Iter & first,
3319 Sentinel last,
3320 Context const & context,
3321 SkipParser const & skip,
3322 detail::flags flags,
3323 bool & success) const
3324 {
3325 using attr_t = decltype(parser_.call(
3326 first, last, context, skip, flags, success));
3327 detail::optional_of<attr_t> retval;
3328 call(first, last, context, skip, flags, success, retval);
3329 return retval;
3330 }
3331 //]
3332
3333 //[ opt_parser_out_param_call

Callers

nothing calls this directly

Calls 3

callFunction · 0.85
scoped_traceFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected