Partager via


map::equal_range (STL/CLR)

Les recherches s'étendent qui correspond à une clé spécifiée.

    cliext::pair<iterator, iterator> equal_range(key_type key);

Paramètres

  • key
    Valeur de clé à rechercher.

Notes

La fonction membre retourne une paire d'itérateurs cliext::pair<iterator, iterator>(map::lower_bound (STL/CLR)(key),map::upper_bound (STL/CLR)(key)).Vous l'utilisez pour déterminer la plage d'éléments actuellement dans la séquence contrôlée qui correspondent à une clé spécifiée.

Exemple

// cliext_map_equal_range.cpp 
// compile with: /clr 
#include <cliext/map> 
 
typedef cliext::map<wchar_t, int> Mymap; 
typedef Mymap::pair_iter_iter Pairii; 
int main() 
    { 
    Mymap c1; 
    c1.insert(Mymap::make_value(L'a', 1)); 
    c1.insert(Mymap::make_value(L'b', 2)); 
    c1.insert(Mymap::make_value(L'c', 3)); 
 
// display contents " [a 1] [b 2] [c 3]" 
    for each (Mymap::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
// display results of failed search 
    Pairii pair1 = c1.equal_range(L'x'); 
    System::Console::WriteLine("equal_range(L'x') empty = {0}", 
        pair1.first == pair1.second); 
 
// display results of successful search 
    pair1 = c1.equal_range(L'b'); 
    for (; pair1.first != pair1.second; ++pair1.first) 
        System::Console::Write(" [{0} {1}]", 
            pair1.first->first, pair1.first->second); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Configuration requise

en-tête :<cliext/carte>

Cliext del'espace de noms :

Voir aussi

Référence

map (STL/CLR)

map::count (STL/CLR)

map::find (STL/CLR)

map::lower_bound (STL/CLR)

map::upper_bound (STL/CLR)