MCPcopy Create free account
hub / github.com/KDE/kdevelop / isDigit

Method isDigit

plugins/astyle/3rdparty/libastyle/ASResource.cpp:808–811  ·  view source on GitHub ↗

check if a specific character is a digit NOTE: Visual C isdigit() gives assert error if char > 256

Source from the content-addressed store, hash-verified

806// check if a specific character is a digit
807// NOTE: Visual C isdigit() gives assert error if char > 256
808bool ASBase::isDigit(char ch) const
809{
810 return (ch >= '0' && ch <= '9');
811}
812
813// check if a specific character is a digit separator
814bool ASBase::isDigitSeparator(const string& line, int i) const

Callers 10

shouldStartCompletionMethod · 0.80
isIdentifierCharacterFunction · 0.80
isEndIdentifierCharacterFunction · 0.80
addUserCommandMethod · 0.80
scanTokenMethod · 0.80
scanNumberMethod · 0.80
parseIntFunction · 0.80
termRangeAtPositionMethod · 0.80
encodedProjectNameMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected