MCPcopy Index your code
hub / github.com/clojure/clojure / listStar

Method listStar

src/jvm/clojure/lang/RT.java:1669–1671  ·  view source on GitHub ↗
(Object arg1, ISeq rest)

Source from the content-addressed store, hash-verified

1667}
1668
1669static public ISeq listStar(Object arg1, ISeq rest){
1670 return (ISeq) cons(arg1, rest);
1671}
1672
1673static public ISeq listStar(Object arg1, Object arg2, ISeq rest){
1674 return (ISeq) cons(arg1, cons(arg2, rest));

Callers 6

buildThunkMethod · 0.95
parseMethod · 0.95
macroexpand1Method · 0.95
swapMethod · 0.95
swapValsMethod · 0.95
listMethod · 0.95

Calls 1

consMethod · 0.95

Tested by

no test coverage detected