MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / isFollowedBy

Method isFollowedBy

Libraries/Strings/StringIterator.h:386–389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

384
385template <typename CharIterator>
386constexpr bool StringIterator<CharIterator>::isFollowedBy(CodePoint c)
387{
388 return it < end ? CharIterator::decode(getNextOf(it, end), end) == c : false;
389}
390
391template <typename CharIterator>
392constexpr bool StringIterator<CharIterator>::isPrecededBy(CodePoint c)

Callers 1

executeFormatMethod · 0.80

Calls 2

decodeFunction · 0.85
getNextOfFunction · 0.85

Tested by

no test coverage detected