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

Method vector

src/jvm/clojure/lang/RT.java:1628–1630  ·  view source on GitHub ↗
(Object... init)

Source from the content-addressed store, hash-verified

1626}
1627
1628static public IPersistentVector vector(Object... init){
1629 return LazilyPersistentVector.createOwning(init);
1630}
1631
1632static public IPersistentVector subvec(IPersistentVector v, int start, int end){
1633 if(end < start || start < 0 || end > v.count())

Callers 6

createMethod · 0.95
ctorTypesMethod · 0.95
parseMethod · 0.95
msigMethod · 0.95
msigMethod · 0.95
RTClass · 0.95

Calls 1

createOwningMethod · 0.95

Tested by

no test coverage detected