MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / add

Method add

ij/src/main/java/ij/io/ImageReader.java:1103–1109  ·  view source on GitHub ↗
(byte x)

Source from the content-addressed store, hash-verified

1101 }
1102
1103 public void add(byte x) {
1104 if (size>=data.length) {
1105 doubleCapacity();
1106 add(x);
1107 } else
1108 data[size++] = x;
1109 }
1110
1111 public int size() {
1112 return size;

Callers 2

lzwUncompressMethod · 0.95
packBitsUncompressMethod · 0.95

Calls 2

doubleCapacityMethod · 0.95
arraycopyMethod · 0.45

Tested by

no test coverage detected