Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/clojure/clojure
/ getMacro
Method
getMacro
src/jvm/clojure/lang/LispReader.java:526–530 ·
view source on GitHub ↗
(int ch)
Source
from the content-addressed store, hash-verified
524
}
525
526
static
private
IFn getMacro(
int
ch){
527
if
(ch < macros.length)
528
return
macros[ch];
529
return
null;
530
}
531
532
static
private
boolean isMacro(
int
ch){
533
return
(ch < macros.length && macros[ch] != null);
Callers
2
read
Method · 0.95
invoke
Method · 0.45
Calls
no outgoing calls
Tested by
no test coverage detected