| 710 | } |
| 711 | |
| 712 | bool String::isHexNotation( const std::string& value, const std::string& withPrefix ) { |
| 713 | if ( !withPrefix.empty() && !String::startsWith( value, withPrefix ) ) { |
| 714 | return false; |
| 715 | } |
| 716 | return value.find_first_not_of( "0123456789abcdefABCDEF", withPrefix.size() ) == |
| 717 | std::string::npos; |
| 718 | } |
| 719 | |
| 720 | std::vector<String> String::split( const String& str, const StringBaseType& delim, |
| 721 | const bool& pushEmptyString, const bool& keepDelim ) { |
nothing calls this directly
no test coverage detected