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

Method call

include/boost/parser/parser.hpp:5048–5061  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5046 typename Context,
5047 typename SkipParser>
5048 auto call(
5049 Iter & first,
5050 Sentinel last,
5051 Context const & context,
5052 SkipParser const & skip,
5053 detail::flags flags,
5054 bool & success) const
5055 {
5056 using attr_t = decltype(parser_.call(
5057 first, last, context, skip, flags, success));
5058 attr_t retval{};
5059 call(first, last, context, skip, flags, success, retval);
5060 return retval;
5061 }
5062
5063 template<
5064 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