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

Method trimToSize

ij/src/main/java/ij/util/FloatArray.java:95–97  ·  view source on GitHub ↗

Trims the capacity of this FloatArray instance to be its current size, minimizing the storage of the FloatArray instance.

()

Source from the content-addressed store, hash-verified

93 /** Trims the capacity of this FloatArray instance to be its current size,
94 * minimizing the storage of the FloatArray instance. */
95 public void trimToSize() {
96 data = toArray();
97 }
98
99}

Callers

nothing calls this directly

Calls 1

toArrayMethod · 0.95

Tested by

no test coverage detected