MCPcopy Create free account
hub / github.com/beefytech/Beef / operator!=

Method operator!=

BeefySysLib/util/String.cpp:63–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63bool 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
70bool StringView::StartsWith(const StringView& b, StringView::CompareKind comparisonType) const
71{

Callers

nothing calls this directly

Calls 1

GetPtrMethod · 0.45

Tested by

no test coverage detected