Returns the last element of this FloatArray. @throws IndexOutOfBoundsException - if this FloatArray is empty
()
| 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. |
no test coverage detected