Vector
lastIndexOf(const T& value, int i) [Vector template]
Find the index (zero-based) of the last item whose value is value
in the vector starting at index i
.
Returns -1 if the item does not exist.
// PROTOTYPE
int lastIndexOf(const T& value, int i) const;