Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/antlr/codebuff
/ isWS
Method
isWS
output/java8/1.4.12/STLexer.java:631–633 ·
view source on GitHub ↗
(char c)
Source
from the content-addressed store, hash-verified
629
}
630
631
public
static
boolean isWS(char c) {
632
return
c==
' '
|| c==
'\t'
|| c==
'\n'
|| c==
'\r'
;
633
}
634
635
public
static
boolean isUnicodeLetter(char c) {
636
return
c >=
'a'
&& c <=
'f'
|| c >=
'A'
&& c <=
'F'
|| c >=
'0'
&& c <=
'9'
;
Callers
1
subTemplate
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected