I have a vector of a structure..
say
struct employee
{
string name;
int age;
int empId;
};and a vector of this structure
RWTValOrderedVector<employee> vec;
suppose this vector has 4 entries. Now if i want to find in this vector for employee information of a specific employeeid, how do i do that without looping through the vector and fetching each structure and comparing the empId value of each structure with the i/p?