hash_set::const_iterator (STL/CLR)
Typ konstantní iterační řízené posloupnosti.
typedef T2 const_iterator;
Poznámky
Popisuje typ objektu neurčený typ T2 , může sloužit jako iterační konstantní obousměrný řízený posloupnosti.
Příklad
// cliext_hash_set_const_iterator.cpp
// compile with: /clr
#include <cliext/hash_set>
typedef cliext::hash_set<wchar_t> Myhash_set;
int main()
{
Myhash_set c1;
c1.insert(L'a');
c1.insert(L'b');
c1.insert(L'c');
// display contents " a b c"
Myhash_set::const_iterator cit = c1.begin();
for (; cit != c1.end(); ++cit)
System::Console::Write(" {0}", *cit);
System::Console::WriteLine();
return (0);
}
Požadavky
Záhlaví: < cliext/hash_set >
Obor názvů: cliext