Returns element ii from the bottom.
Return the last element.
double d = v.fromLast(0);
Return the element three positions before the end.
double d = v.fromLast(3);
See Implementation
Returns element ii from the bottom.