Partial string search in boost::multi_index_container
- by user361699
I have a struct to store info about persons and multi_index_contaider to store such objects
struct person
{
std::string m_first_name;
std::string m_last_name;
std::string m_third_name;
std::string m_address;
std::string m_phone;
person();
person(std::string f, std::string l, std::string t = "", std::string a =…