Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ isDigit
Method
isDigit
classpath/java/lang/Character.java:85–87 ·
view source on GitHub ↗
(char c)
Source
from the content-addressed store, hash-verified
83
}
84
85
public
static
boolean isDigit(char c) {
86
return
c >=
'0'
&& c <=
'9'
;
87
}
88
89
public
static
boolean isDigit(
int
c) {
90
return
c >=
'0'
&& c <=
'9'
;
Callers
2
isLetterOrDigit
Method · 0.95
isJavaIdentifierPart
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected