Peek at item i in the vector (zero-based). Only call this if the item exists.
i
// PROTOTYPES T& at(int i); const T& at(int i) const; // EXAMPLE Vector<int> v({123, 456, 789}); Log.info("%d", v.at(0));