MCPcopy Create free account
hub / github.com/aldelaro5/dolphin-memory-engine / isUnsignedIntegerString

Method isUnsignedIntegerString

Source/GUI/MemCopy/DlgCopy.cpp:194–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192}
193
194bool DlgCopy::isUnsignedIntegerString(const std::string_view str)
195{
196 return std::find_if(str.cbegin(), str.cend(),
197 [](const char c) { return !('0' <= c && c <= '9'); }) == str.cend();
198}
199
200bool DlgCopy::uintStringToU32(const std::string_view str, u32& output)
201{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected