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

Method ontoArrayPrepend

src/jvm/clojure/lang/RestFn.java:4087–4092  ·  view source on GitHub ↗
(Object[] array, Object... args)

Source from the content-addressed store, hash-verified

4085
4086
4087protected static ISeq ontoArrayPrepend(Object[] array, Object... args){
4088 ISeq ret = ArraySeq.create(array);
4089 for(int i = args.length - 1; i >= 0; --i)
4090 ret = RT.cons(args[i], ret);
4091 return ret;
4092}
4093
4094protected static ISeq findKey(Object key, ISeq args){
4095 while(args != null)

Callers 1

invokeMethod · 0.95

Calls 2

createMethod · 0.95
consMethod · 0.95

Tested by

no test coverage detected