MCPcopy Create free account
hub / github.com/beefytech/Beef / IsWhitespace

Method IsWhitespace

BeefySysLib/util/String.cpp:798–805  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

796}
797
798bool StringImpl::IsWhitespace() const
799{
800 auto ptr = GetPtr();
801 for (intptr i = 0; i < mLength; i++)
802 if (!iswspace(ptr[i]))
803 return false;
804 return true;
805}
806
807bool StringImpl::HasMultibyteChars()
808{

Callers 2

GetOldSourceCommandMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected