operator==,!=<div class="t-tr-text">(Std :: scoped_allocator_adaptor)<div class="t-tr-dropdown"><div><div><div class="t-tr-dropdown-arrow-border"></div><div class="t-tr-dropdown-arrow"></div><div class="t-tr-dropdown-h">Original:</div><div class="t-tr-dropdown-orig">(std::scoped_allocator_adaptor)</div><div class="t-tr-dropdown-notes">The text has been machine-translated via [http://translate.google.com Google Translate].<br/> You can help to correct and verify the translation. Click [http://en.cppreference.com/w/Cppreference:MachineTranslations here] for instructions.</div></div></div></div></div>
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> template< class OuterAlloc1, class OuterAlloc2, class... InnerAllocs > bool operator==( const scoped_allocator_adaptor<OuterAlloc1, InnerAllocs...>& lhs, const scoped_allocator_adaptor<OuterAlloc2, InnerAllocs...>& rhs ); |
(seit C++11) | |
template< class OuterAlloc1, class OuterAlloc2, class... InnerAllocs > bool operator!=( const scoped_allocator_adaptor<OuterAlloc1, InnerAllocs...>& lhs, const scoped_allocator_adaptor<OuterAlloc2, InnerAllocs...>& rhs ); |
(seit C++11) | |
You can help to correct and verify the translation. Click here for instructions.
lhs.outer_allocator() == rhs.outer_allocator(), and- if
sizeof...(InnerAllocs) > 0,lhs.inner_allocator() == rhs.inner_allocator().
Parameter
| lhs, rhs | - | scoped allocator Adaptern zu vergleichen
Original: scoped allocator adaptors to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Rückgabewert
true wenn lhs und rhs gleich sind, false sonst .true if lhs and rhs are equal, false otherwise.You can help to correct and verify the translation. Click here for instructions.
true wenn lhs und rhs nicht gleich sind, false sonst .true if lhs and rhs are not equal, false otherwise.You can help to correct and verify the translation. Click here for instructions.