MCPcopy Create free account
hub / github.com/ReadyTalk/avian / copy

Method copy

classpath/java/io/ByteArrayOutputStream.java:52–56  ·  view source on GitHub ↗
(byte[] b, int offset, int length)

Source from the content-addressed store, hash-verified

50 }
51
52 private byte[] copy(byte[] b, int offset, int length) {
53 byte[] array = new byte[length];
54 System.arraycopy(b, offset, array, 0, length);
55 return array;
56 }
57
58 public void write(byte[] b, int offset, int length) {
59 if (b == null) {

Callers 1

writeMethod · 0.95

Calls 1

arraycopyMethod · 0.95

Tested by

no test coverage detected