MCPcopy Create free account
hub / github.com/cinder/Cinder / prior

Function prior

include/utf8cpp/unchecked.h:98–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96
97 template <typename octet_iterator>
98 uint32_t prior(octet_iterator& it)
99 {
100 while (utf8::internal::is_trail(*(--it))) ;
101 octet_iterator temp = it;
102 return utf8::unchecked::next(temp);
103 }
104
105 // Deprecated in versions that include prior, but only for the sake of consistency (see utf8::previous)
106 template <typename octet_iterator>

Callers 3

previousFunction · 0.70
iteratorClass · 0.70
operator --Method · 0.70

Calls 2

is_trailFunction · 0.85
nextFunction · 0.70

Tested by

no test coverage detected