| 190 | } |
| 191 | |
| 192 | bool StringBox::hasPrefix(const char* prefix) const noexcept { |
| 193 | return Valdi::hasPrefix(toStringView(), 0, prefix); |
| 194 | } |
| 195 | |
| 196 | bool StringBox::hasPrefix(const StringBox& prefix) const noexcept { |
| 197 | return Valdi::hasPrefix(toStringView(), 0, prefix.getCStr()); |