| 192 | } |
| 193 | |
| 194 | bool 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 | |
| 200 | bool DlgCopy::uintStringToU32(const std::string_view str, u32& output) |
| 201 | { |
nothing calls this directly
no outgoing calls
no test coverage detected