.TH "__gnu_debug::_Safe_unordered_container< _Container >" 3cxx "libstdc++" \" -*- nroff -*- .ad l .nh .SH NAME __gnu_debug::_Safe_unordered_container< _Container > \- Base class for constructing a \fIsafe\fP unordered container type that tracks iterators that reference it\&. .SH SYNOPSIS .br .PP .PP \fC#include \fP .PP Inherits \fB__gnu_debug::_Safe_unordered_container_base\fP\&. .SS "Public Member Functions" .in +1c .ti -1c .RI "void \fB_M_invalidate_all\fP ()" .br .ti -1c .RI "template void \fB_M_invalidate_if\fP (_Predicate __pred)" .br .ti -1c .RI "template void \fB_M_invalidate_local_if\fP (_Predicate __pred)" .br .in -1c .SS "Public Attributes" .in +1c .ti -1c .RI "\fB_Safe_iterator_base\fP * \fB_M_const_iterators\fP" .br .RI "The list of constant iterators that reference this container\&. " .ti -1c .RI "\fB_Safe_iterator_base\fP * \fB_M_const_local_iterators\fP" .br .RI "The list of constant local iterators that reference this container\&. " .ti -1c .RI "\fB_Safe_iterator_base\fP * \fB_M_iterators\fP" .br .RI "The list of mutable iterators that reference this container\&. " .ti -1c .RI "\fB_Safe_iterator_base\fP * \fB_M_local_iterators\fP" .br .RI "The list of mutable local iterators that reference this container\&. " .ti -1c .RI "unsigned int \fB_M_version\fP" .br .RI "The container version number\&. This number may never be 0\&. " .in -1c .SS "Protected Member Functions" .in +1c .ti -1c .RI "void \fB_M_detach_all\fP ()" .br .ti -1c .RI "void \fB_M_detach_singular\fP ()" .br .ti -1c .RI "__gnu_cxx::__mutex & \fB_M_get_mutex\fP () throw ()" .br .ti -1c .RI "void \fB_M_invalidate_all\fP () const" .br .ti -1c .RI "void \fB_M_invalidate_locals\fP ()" .br .ti -1c .RI "void \fB_M_revalidate_singular\fP ()" .br .ti -1c .RI "void \fB_M_swap\fP (\fB_Safe_sequence_base\fP &__x) noexcept" .br .ti -1c .RI "void \fB_M_swap\fP (\fB_Safe_unordered_container_base\fP &__x) noexcept" .br .in -1c .SS "Static Protected Member Functions" .in +1c .ti -1c .RI "template static _UContMergeGuard< _Source, _UContInvalidatePred< _ExtractKey, _Source > > \fB_S_uc_guard\fP (_ExtractKey, _Source &__src)" .br .ti -1c .RI "template static _UContMergeGuard< _Source, _UMContInvalidatePred< _ExtractKey, _Source > > \fB_S_umc_guard\fP (_ExtractKey, _Source &__src)" .br .in -1c .SH "Detailed Description" .PP .SS "template .br class __gnu_debug::_Safe_unordered_container< _Container >"Base class for constructing a \fIsafe\fP unordered container type that tracks iterators that reference it\&. The class template _Safe_unordered_container simplifies the construction of \fIsafe\fP unordered containers that track the iterators that reference the container, so that the iterators are notified of changes in the container that may affect their operation, e\&.g\&., if the container invalidates its iterators or is destructed\&. This class template may only be used by deriving from it and passing the name of the derived class as its template parameter via the curiously recurring template pattern\&. The derived class must have \fCiterator\fP and \fCconst_iterator\fP types that are instantiations of class template _Safe_iterator for this container and \fClocal_iterator\fP and \fCconst_local_iterator\fP types that are instantiations of class template _Safe_local_iterator for this container\&. Iterators will then be tracked automatically\&. .SH "Member Function Documentation" .PP .SS "void __gnu_debug::_Safe_unordered_container_base::_M_detach_all ()\fC [protected]\fP, \fC [inherited]\fP" Detach all iterators, leaving them singular\&. .SS "void __gnu_debug::_Safe_sequence_base::_M_detach_singular ()\fC [protected]\fP, \fC [inherited]\fP" Detach all singular iterators\&. .PP \fBPostcondition\fP .RS 4 for all iterators i attached to this sequence, i->_M_version == _M_version\&. .RE .PP .SS "__gnu_cxx::__mutex & __gnu_debug::_Safe_sequence_base::_M_get_mutex ()\fC [protected]\fP, \fC [inherited]\fP" For use in _Safe_sequence\&. .PP Referenced by \fB__gnu_debug::_Safe_sequence< _Sequence >::_M_transfer_from_if()\fP\&. .SS "void __gnu_debug::_Safe_sequence_base::_M_invalidate_all () const\fC [inline]\fP, \fC [protected]\fP, \fC [inherited]\fP" Invalidates all iterators\&. .PP References \fB__gnu_debug::_Safe_sequence_base::_M_version\fP\&. .SS "template template void \fB__gnu_debug::_Safe_unordered_container\fP< _Container >::_M_invalidate_if (_Predicate __pred)" Invalidates all iterators \fCx\fP that reference this container, are not singular, and for which \fC__pred(x)\fP returns \fCtrue\fP\&. \fC__pred\fP will be invoked with the normal iterators nested in the safe ones\&. .SS "template template void \fB__gnu_debug::_Safe_unordered_container\fP< _Container >::_M_invalidate_local_if (_Predicate __pred)" Invalidates all local iterators \fCx\fP that reference this container, are not singular, and for which \fC__pred(x)\fP returns \fCtrue\fP\&. \fC__pred\fP will be invoked with the normal local iterators nested in the safe ones\&. .SS "void __gnu_debug::_Safe_sequence_base::_M_revalidate_singular ()\fC [protected]\fP, \fC [inherited]\fP" Revalidates all attached singular iterators\&. This method may be used to validate iterators that were invalidated before (but for some reason, such as an exception, need to become valid again)\&. .SS "void __gnu_debug::_Safe_sequence_base::_M_swap (\fB_Safe_sequence_base\fP & __x)\fC [protected]\fP, \fC [noexcept]\fP, \fC [inherited]\fP" Swap this sequence with the given sequence\&. This operation also swaps ownership of the iterators, so that when the operation is complete all iterators that originally referenced one container now reference the other container\&. .SS "void __gnu_debug::_Safe_unordered_container_base::_M_swap (\fB_Safe_unordered_container_base\fP & __x)\fC [protected]\fP, \fC [noexcept]\fP, \fC [inherited]\fP" Swap this container with the given container\&. This operation also swaps ownership of the iterators, so that when the operation is complete all iterators that originally referenced one container now reference the other container\&. .SH "Member Data Documentation" .PP .SS "\fB_Safe_iterator_base\fP* __gnu_debug::_Safe_sequence_base::_M_const_iterators\fC [inherited]\fP" .PP The list of constant iterators that reference this container\&. .PP Referenced by \fB__gnu_debug::_Safe_sequence< _Sequence >::_M_transfer_from_if()\fP\&. .SS "\fB_Safe_iterator_base\fP* __gnu_debug::_Safe_unordered_container_base::_M_const_local_iterators\fC [inherited]\fP" .PP The list of constant local iterators that reference this container\&. .SS "\fB_Safe_iterator_base\fP* __gnu_debug::_Safe_sequence_base::_M_iterators\fC [inherited]\fP" .PP The list of mutable iterators that reference this container\&. .PP Referenced by \fB__gnu_debug::_Safe_sequence< _Sequence >::_M_transfer_from_if()\fP\&. .SS "\fB_Safe_iterator_base\fP* __gnu_debug::_Safe_unordered_container_base::_M_local_iterators\fC [inherited]\fP" .PP The list of mutable local iterators that reference this container\&. .SS "unsigned int __gnu_debug::_Safe_sequence_base::_M_version\fC [mutable]\fP, \fC [inherited]\fP" .PP The container version number\&. This number may never be 0\&. .PP Referenced by \fB__gnu_debug::_Safe_sequence_base::_M_invalidate_all()\fP, and \fB__gnu_debug::_Safe_local_iterator< _Iterator, _Sequence >::operator=()\fP\&. .SH "Author" .PP Generated automatically by Doxygen for libstdc++ from the source code\&.