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

Method call

include/boost/parser/parser.hpp:3153–3166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls 7

callFunction · 0.85
scoped_traceFunction · 0.85
apply_parserFunction · 0.85
move_backFunction · 0.85
resolveFunction · 0.85
assignFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected