i want to access a QMap by it's value, but i don't want to iterate over it and find element with same value and use it's key, is there anyway to find QMap key by it's content? my code is :
QMap<int, QVector<QString> >::iterator it;
QMap <QString, int> m_all_data;
i want to access to element of m_all_data with value of my iterator
key;