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

Function make_view_begin

include/boost/parser/parser.hpp:2777–2784  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2775
2776 template<typename R>
2777 constexpr auto make_view_begin(R & r) noexcept
2778 {
2779 if constexpr (std::is_pointer_v<std::decay_t<R>>) {
2780 return r;
2781 } else {
2782 return detail::text::detail::begin(r);
2783 }
2784 }
2785
2786 template<typename R>
2787 constexpr auto make_view_end(R & r) noexcept

Callers 3

string_parserFunction · 0.85
parser.hppFile · 0.85
operator()Function · 0.85

Calls 1

beginFunction · 0.70

Tested by

no test coverage detected