bsl::operator==

Return true if lhs and rhs have the same value, and false otherwise.

Synopsis

Declared in <bslstl_list.h>

template<
    class VALUE,
    class ALLOCATOR>
bool
operator==(
    list<VALUE, ALLOCATOR> const& lhs,
    list<VALUE, ALLOCATOR> const& rhs);

Description

Two list objects lhs and rhs have the same value if they have the same number of elements, and each element in the ordered sequence of elements of lhs has the same value as the corresponding element in the ordered sequence of elements of rhs. This method requires that the (template parameter) type VALUE be equality-comparable (see {Requirements on VALUE}).

Return Value

true if the lists compare equal

Parameters

NameDescription
lhsfirst list to compare
rhssecond list to compare