|
template<class K , class V > |
void | tools::add (std::vector< std::pair< K, V > > &a_vec, const K &a_key, const V &a_value) |
|
template<class K , class V > |
bool | tools::find (const std::vector< std::pair< K, V > > &a_vec, const K &a_key, V &a_value) |
|
template<class K , class V > |
bool | tools::rfind (const std::vector< std::pair< K, V > > &a_vec, const K &a_key, V &a_value) |
|
template<class K , class V > |
bool | tools::is_key (const std::vector< std::pair< K, V > > &a_vec, const K &a_key) |
|
template<class K , class V > |
bool | tools::find_key (const std::vector< std::pair< K, V > > &a_vec, const V &a_value, K &a_key) |
|
template<class K , class V > |
void | tools::sort_by_second (std::vector< std::pair< K, V > > &a_vec) |
|
template<class K , class V > |
bool | tools::remove (std::vector< std::pair< K, V > > &a_vec, const K &a_key) |
|
template<class K , class V > |
bool | tools::remove (std::vector< std::pair< K, V > > &a_vec, const K &a_key, bool a_delete) |
|