Udostępnij za pośrednictwem


<scoped_allocator>, operatory

operator!=
operator==

operator!=

Testuje dwa scoped_allocator_adaptor obiekty pod kątem nierówności.

template <class Outer, class... Inner>
bool operator!=(
    const scoped_allocator_adaptor<Outer, Inner...>& left,
    const scoped_allocator_adaptor<Outer, Inner...>& right) noexcept;

Parametry

Lewy
Lewy scoped_allocator_adaptor obiekt.

Prawy
Właściwy scoped_allocator_adaptor obiekt.

Wartość zwracana

!(left == right)

operator==

Testuje dwa scoped_allocator_adaptor obiekty pod kątem równości.

template <class Outer, class... Inner>
bool operator==(
    const scoped_allocator_adaptor<Outer, Inner...>& left,
    const scoped_allocator_adaptor<Outer, Inner...>& right) noexcept;

Parametry

Lewy
Lewy scoped_allocator_adaptor obiekt.

Prawy
Właściwy scoped_allocator_adaptor obiekt.

Wartość zwracana

left.outer_allocator() == right.outer_allocator() && left.inner_allocator() == right.inner_allocator()

Zobacz też

<scoped_allocator>