I was wondering if there was a way to check if theres already stored in a vector element.
For example:
Code:
vector<string> Inventory;
I searched up vector methods and I saw the empty() method but, then it says it checks if the whole vector is empty. Could i do something like this?

Code:
Inventory[0].empty();