| 61 | } |
| 62 | |
| 63 | bool StringView::operator!=(const StringImpl& strB) const |
| 64 | { |
| 65 | if (this->mLength != strB.mLength) |
| 66 | return true; |
| 67 | return strncmp(this->mPtr, strB.GetPtr(), this->mLength) != 0; |
| 68 | } |
| 69 | |
| 70 | bool StringView::StartsWith(const StringView& b, StringView::CompareKind comparisonType) const |
| 71 | { |