MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ReadUntil

Method ReadUntil

demangler/msvc/demangle_msvc.cpp:87–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85
86
87string Demangle::Reader::ReadUntil(char sentinal)
88{
89 size_t pos = m_data.find_first_of(sentinal);
90 if (pos == string::npos)
91 throw DemangleException();
92 return ReadString(pos);
93}
94
95
96void Demangle::Reader::Consume(size_t count)

Callers 2

DemangleNumberMethod · 0.45

Calls 1

DemangleExceptionClass · 0.70

Tested by

no test coverage detected