| 198 | } |
| 199 | |
| 200 | bool StringBox::hasSuffix(const char* suffix) const noexcept { |
| 201 | return Valdi::hasSuffix(toStringView(), suffix); |
| 202 | } |
| 203 | |
| 204 | bool StringBox::hasSuffix(const StringBox& suffix) const noexcept { |
| 205 | return Valdi::hasSuffix(toStringView(), suffix.getCStr()); |