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

Function prev

include/boost/parser/detail/text/detail/algorithm.hpp:27–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25
26 template<typename I>
27 auto prev(I it)
28 {
29#if BOOST_PARSER_DETAIL_TEXT_USE_CONCEPTS
30 return std::ranges::prev(it);
31#else
32 return std::prev(it);
33#endif
34 }
35 template<typename I>
36 auto next(I it)
37 {

Callers 5

prevMethod · 0.85
make_input_subrangeFunction · 0.85
from_trie_implFunction · 0.85
backMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected