fromLast

Returns element ii from the bottom.

double
fromLast
()

Examples

Return the last element.

double d = v.fromLast(0);

Return the element three positions before the end.

double d = v.fromLast(3);

Meta