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

Method getLast

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

Returns the last element of this FloatArray. @throws IndexOutOfBoundsException - if this FloatArray is empty

()

Source from the content-addressed store, hash-verified

48 /** Returns the last element of this FloatArray.
49 * @throws IndexOutOfBoundsException - if this FloatArray is empty */
50 public float getLast() {
51 return get(size-1);
52 }
53
54 /** Replaces the element at the specified position with the value given.
55 * @return the value previously at the specified position.

Callers 5

parsePathMethod · 0.95
getFloatPolygonMethod · 0.95
cleanOutliersMethod · 0.80
undoOutlierCleanMethod · 0.80

Calls 1

getMethod · 0.95

Tested by

no test coverage detected