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

Method call

include/boost/parser/parser.hpp:5159–5172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5157 typename Context,
5158 typename SkipParser_>
5159 auto call(
5160 Iter & first,
5161 Sentinel last,
5162 Context const & context,
5163 SkipParser_ const & skip,
5164 detail::flags flags,
5165 bool & success) const
5166 {
5167 using attr_t = decltype(parser_.call(
5168 first, last, context, skip, flags, success));
5169 attr_t retval{};
5170 call(first, last, context, skip, flags, success, retval);
5171 return retval;
5172 }
5173
5174 template<
5175 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