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

Method call

include/boost/parser/parser.hpp:5104–5120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5102 typename Context,
5103 typename SkipParser>
5104 auto call(
5105 Iter & first,
5106 Sentinel last,
5107 Context const & context_,
5108 SkipParser const & skip,
5109 detail::flags flags,
5110 bool & success) const
5111 {
5112 auto context = context_;
5113 ++context.no_case_depth_;
5114
5115 using attr_t = decltype(parser_.call(
5116 first, last, context, skip, flags, success));
5117 attr_t retval{};
5118 call(first, last, context, skip, flags, success, retval);
5119 return retval;
5120 }
5121
5122 template<
5123 typename Iter,

Callers

nothing calls this directly

Calls 3

callFunction · 0.85
scoped_traceFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected