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

Method add

src/jvm/clojure/asm/Attribute.java:314–321  ·  view source on GitHub ↗
(final Attribute attribute)

Source from the content-addressed store, hash-verified

312 }
313
314 private void add(final Attribute attribute) {
315 if (size >= data.length) {
316 Attribute[] newData = new Attribute[data.length + SIZE_INCREMENT];
317 System.arraycopy(data, 0, newData, 0, size);
318 data = newData;
319 }
320 data[size++] = attribute;
321 }
322 }
323}

Callers 1

addAttributesMethod · 0.95

Implementers 1

APersistentSetsrc/jvm/clojure/lang/APersistentSet.ja

Calls

no outgoing calls

Tested by

no test coverage detected