ReactOS 0.4.15-dev-7842-g558ab78
unordered_multiset< _Value,,, > Class Template Reference

#include <_unordered_set.h>

Collaboration diagram for unordered_multiset< _Value,,, >:

Public Types

typedef hashtable< _Value, _Value, _HashFcn, _UnorderedMultisetTraits, _STLP_PRIV _Identity< _Value >, _EqualKey, _Alloc_Ht
 
typedef _Ht::key_type key_type
 
typedef _Ht::value_type value_type
 
typedef _Ht::hasher hasher
 
typedef _Ht::key_equal key_equal
 
typedef _Ht::size_type size_type
 
typedef _Ht::difference_type difference_type
 
typedef _Ht::pointer pointer
 
typedef _Ht::const_pointer const_pointer
 
typedef _Ht::reference reference
 
typedef _Ht::const_reference const_reference
 
typedef _Ht::iterator iterator
 
typedef _Ht::const_iterator const_iterator
 
typedef _Ht::local_iterator local_iterator
 
typedef _Ht::const_local_iterator const_local_iterator
 
typedef _Ht::allocator_type allocator_type
 

Public Member Functions

hasher hash_function () const
 
key_equal key_eq () const
 
allocator_type get_allocator () const
 
 unordered_multiset (size_type __n=0, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type())
 
 unordered_multiset (__move_source< _Self > src)
 
 unordered_multiset (const value_type *__f, const value_type *__l, size_type __n=0, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type())
 
 unordered_multiset (const_iterator __f, const_iterator __l, size_type __n=0, const hasher &__hf=hasher(), const key_equal &__eql=key_equal(), const allocator_type &__a=allocator_type())
 
_Selfoperator= (const _Self &__other)
 
size_type size () const
 
size_type max_size () const
 
bool empty () const
 
void swap (_Self &hs)
 
iterator begin ()
 
iterator end ()
 
const_iterator begin () const
 
const_iterator end () const
 
iterator insert (const value_type &__obj)
 
iterator insert (const_iterator, const value_type &__obj)
 
void insert (const value_type *__f, const value_type *__l)
 
void insert (const_iterator __f, const_iterator __l)
 
_STLP_TEMPLATE_FOR_CONT_EXT iterator find (const _KT &__key)
 
_STLP_TEMPLATE_FOR_CONT_EXT const_iterator find (const _KT &__key) const
 
_STLP_TEMPLATE_FOR_CONT_EXT size_type count (const _KT &__key) const
 
_STLP_TEMPLATE_FOR_CONT_EXT pair< iterator, iteratorequal_range (const _KT &__key)
 
_STLP_TEMPLATE_FOR_CONT_EXT pair< const_iterator, const_iteratorequal_range (const _KT &__key) const
 
size_type erase (const key_type &__key)
 
void erase (const_iterator __it)
 
void erase (const_iterator __f, const_iterator __l)
 
void clear ()
 
size_type bucket_count () const
 
size_type max_bucket_count () const
 
size_type bucket_size (size_type __n) const
 
_STLP_TEMPLATE_FOR_CONT_EXT size_type bucket (const _KT &__k) const
 
local_iterator begin (size_type __n)
 
local_iterator end (size_type __n)
 
const_local_iterator begin (size_type __n) const
 
const_local_iterator end (size_type __n) const
 
float load_factor () const
 
float max_load_factor () const
 
void max_load_factor (float __val)
 
void rehash (size_type __hint)
 

Private Types

typedef unordered_multiset< _Value, _HashFcn, _EqualKey, _Alloc_Self
 
typedef _STLP_PRIV _UnorderedMultisetTraitsT< _Value_UnorderedMultisetTraits
 

Private Attributes

_Ht _M_ht
 

Detailed Description

template<class _Value, _STLP_DFL_TMPL_PARAM(_HashFcn, hash< _Value >), _STLP_DFL_TMPL_PARAM(_EqualKey, equal_to< _Value >), _STLP_DFL_TMPL_PARAM(_Alloc, allocator< _Value >)>
class unordered_multiset< _Value,,, >

Definition at line 187 of file _unordered_set.h.

Member Typedef Documentation

◆ _Ht

◆ _Self

typedef unordered_multiset<_Value, _HashFcn, _EqualKey, _Alloc> unordered_multiset< _Value,,, >::_Self
private

Definition at line 192 of file _unordered_set.h.

◆ _UnorderedMultisetTraits

typedef _STLP_PRIV _UnorderedMultisetTraitsT<_Value> unordered_multiset< _Value,,, >::_UnorderedMultisetTraits
private

Definition at line 194 of file _unordered_set.h.

◆ allocator_type

Definition at line 216 of file _unordered_set.h.

◆ const_iterator

Definition at line 212 of file _unordered_set.h.

◆ const_local_iterator

Definition at line 214 of file _unordered_set.h.

◆ const_pointer

Definition at line 207 of file _unordered_set.h.

◆ const_reference

Definition at line 209 of file _unordered_set.h.

◆ difference_type

Definition at line 205 of file _unordered_set.h.

◆ hasher

Definition at line 201 of file _unordered_set.h.

◆ iterator

◆ key_equal

Definition at line 202 of file _unordered_set.h.

◆ key_type

Definition at line 199 of file _unordered_set.h.

◆ local_iterator

Definition at line 213 of file _unordered_set.h.

◆ pointer

◆ reference

◆ size_type

Definition at line 204 of file _unordered_set.h.

◆ value_type

Definition at line 200 of file _unordered_set.h.

Constructor & Destructor Documentation

◆ unordered_multiset() [1/4]

Definition at line 227 of file _unordered_set.h.

230 : _M_ht(__n, __hf, __eql, __a) {}
return __n
Definition: _algo.h:75

◆ unordered_multiset() [2/4]

Definition at line 233 of file _unordered_set.h.

234 : _M_ht(__move_source<_Ht>(src.get()._M_ht)) {}
GLenum src
Definition: glext.h:6340

◆ unordered_multiset() [3/4]

Definition at line 246 of file _unordered_set.h.

250 : _M_ht(__n, __hf, __eql, __a)
251 { _M_ht.insert_equal(__f, __l); }
iterator insert_equal(const value_type &__obj)
Definition: _hashtable.h:412

◆ unordered_multiset() [4/4]

Definition at line 253 of file _unordered_set.h.

257 : _M_ht(__n, __hf, __eql, __a)
258 { _M_ht.insert_equal(__f, __l); }

Member Function Documentation

◆ begin() [1/4]

Definition at line 272 of file _unordered_set.h.

272{ return _M_ht.begin(); }
iterator begin()
Definition: _hashtable.h:376

◆ begin() [2/4]

Definition at line 274 of file _unordered_set.h.

274{ return _M_ht.begin(); }

◆ begin() [3/4]

Definition at line 316 of file _unordered_set.h.

316{ return _M_ht.begin(__n); }

◆ begin() [4/4]

Definition at line 318 of file _unordered_set.h.

318{ return _M_ht.begin(__n); }

◆ bucket()

Definition at line 315 of file _unordered_set.h.

315{ return _M_ht.bucket(__k); }
_STLP_TEMPLATE_FOR_CONT_EXT size_type bucket(const _KT &__k) const
Definition: _hashtable.h:397

◆ bucket_count()

size_type unordered_multiset< _Value,,, >::bucket_count ( ) const
inline

Definition at line 311 of file _unordered_set.h.

311{ return _M_ht.bucket_count(); }
size_type bucket_count() const
Definition: _hashtable.h:391

◆ bucket_size()

size_type unordered_multiset< _Value,,, >::bucket_size ( size_type  __n) const
inline

Definition at line 313 of file _unordered_set.h.

313{ return _M_ht.elems_in_bucket(__n); }
size_type elems_in_bucket(size_type __bucket) const
Definition: _hashtable.h:393

◆ clear()

Definition at line 309 of file _unordered_set.h.

309{ _M_ht.clear(); }
void clear()
Definition: _hashtable.c:501

◆ count()

Definition at line 297 of file _unordered_set.h.

297{ return _M_ht.count(__key); }
_STLP_TEMPLATE_FOR_CONT_EXT size_type count(const _KT &__key) const
Definition: _hashtable.h:516

◆ empty()

bool unordered_multiset< _Value,,, >::empty ( ) const
inline

Definition at line 266 of file _unordered_set.h.

266{ return _M_ht.empty(); }
bool empty() const
Definition: _hashtable.h:365

◆ end() [1/4]

Definition at line 273 of file _unordered_set.h.

273{ return _M_ht.end(); }
iterator end()
Definition: _hashtable.h:377

◆ end() [2/4]

Definition at line 275 of file _unordered_set.h.

275{ return _M_ht.end(); }

◆ end() [3/4]

Definition at line 317 of file _unordered_set.h.

317{ return _M_ht.end(__n); }

◆ end() [4/4]

Definition at line 319 of file _unordered_set.h.

319{ return _M_ht.end(__n); }

◆ equal_range() [1/2]

Definition at line 300 of file _unordered_set.h.

301 { return _M_ht.equal_range(__key); }
_STLP_TEMPLATE_FOR_CONT_EXT pair< iterator, iterator > equal_range(const _KT &__key)
Definition: _hashtable.h:534

◆ equal_range() [2/2]

Definition at line 303 of file _unordered_set.h.

304 { return _M_ht.equal_range(__key); }

◆ erase() [1/3]

Definition at line 306 of file _unordered_set.h.

306{return _M_ht.erase(__key); }
size_type erase(const key_type &__key)
Definition: _hashtable.c:263

◆ erase() [2/3]

Definition at line 308 of file _unordered_set.h.

308{ _M_ht.erase(__f, __l); }

◆ erase() [3/3]

Definition at line 307 of file _unordered_set.h.

307{ _M_ht.erase(__it); }
_STLP_MOVE_TO_PRIV_NAMESPACE const _InputIterator const input_iterator_tag &_InputIterator __it(__first)

◆ find() [1/2]

Definition at line 292 of file _unordered_set.h.

292{ return _M_ht.find(__key); }
_STLP_TEMPLATE_FOR_CONT_EXT iterator find(const _KT &__key)
Definition: _hashtable.h:511

◆ find() [2/2]

Definition at line 294 of file _unordered_set.h.

294{ return _M_ht.find(__key); }

◆ get_allocator()

allocator_type unordered_multiset< _Value,,, >::get_allocator ( ) const
inline

Definition at line 220 of file _unordered_set.h.

220{ return _M_ht.get_allocator(); }
allocator_type get_allocator() const
Definition: _hashtable.h:300

◆ hash_function()

hasher unordered_multiset< _Value,,, >::hash_function ( ) const
inline

Definition at line 218 of file _unordered_set.h.

218{ return _M_ht.hash_funct(); }
hasher hash_funct() const
Definition: _hashtable.h:246

◆ insert() [1/4]

Definition at line 277 of file _unordered_set.h.

278 { return _M_ht.insert_equal(__obj); }

Referenced by UnorderedTest::template_methods().

◆ insert() [2/4]

Definition at line 285 of file _unordered_set.h.

286 { _M_ht.insert_equal(__f,__l); }

◆ insert() [3/4]

Definition at line 287 of file _unordered_set.h.

289 { _M_ht.insert_equal(__f, __l); }

◆ insert() [4/4]

Definition at line 279 of file _unordered_set.h.

280 { return _M_ht.insert_equal(__obj); }

◆ key_eq()

Definition at line 219 of file _unordered_set.h.

219{ return _M_ht.key_eq(); }
key_equal key_eq() const
Definition: _hashtable.h:247

◆ load_factor()

float unordered_multiset< _Value,,, >::load_factor ( ) const
inline

Definition at line 321 of file _unordered_set.h.

321{ return _M_ht.load_factor(); }
float load_factor() const
Definition: _hashtable.h:400

◆ max_bucket_count()

size_type unordered_multiset< _Value,,, >::max_bucket_count ( ) const
inline

Definition at line 312 of file _unordered_set.h.

312{ return _M_ht.max_bucket_count(); }
size_type max_bucket_count() const
Definition: _hashtable.h:392

◆ max_load_factor() [1/2]

float unordered_multiset< _Value,,, >::max_load_factor ( ) const
inline

Definition at line 322 of file _unordered_set.h.

322{ return _M_ht.max_load_factor(); }
float max_load_factor() const
Definition: _hashtable.h:401

Referenced by UnorderedTest::benchmark1(), UnorderedTest::benchmark2(), and UnorderedTest::equal_range().

◆ max_load_factor() [2/2]

void unordered_multiset< _Value,,, >::max_load_factor ( float  __val)
inline

Definition at line 323 of file _unordered_set.h.

_STLP_INLINE_LOOP _InputIter const _Tp & __val
Definition: _algobase.h:656

◆ max_size()

size_type unordered_multiset< _Value,,, >::max_size ( ) const
inline

Definition at line 265 of file _unordered_set.h.

265{ return _M_ht.max_size(); }
size_type max_size() const
Definition: _hashtable.h:364

◆ operator=()

Definition at line 261 of file _unordered_set.h.

262 { _M_ht = __other._M_ht; return *this; }

◆ rehash()

Definition at line 324 of file _unordered_set.h.

324{ _M_ht.rehash(__hint); }
void rehash(size_type __num_buckets_hint)
Definition: _hashtable.c:365

◆ size()

Definition at line 264 of file _unordered_set.h.

264{ return _M_ht.size(); }
size_type size() const
Definition: _hashtable.h:363

◆ swap()

Definition at line 267 of file _unordered_set.h.

267{ _M_ht.swap(hs._M_ht); }
void swap(_Self &__ht)
Definition: _hashtable.h:367

Member Data Documentation

◆ _M_ht


The documentation for this class was generated from the following file: