Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Operator ==

Description

Compares 2 iterators for equality.

Synopsis
template<
    typename I,
    typename J
    >
unspecified operator==(I const& i, J const& i);

Table 1.9. Parameters

Parameter

Requirement

Description

i, j

Any fusion iterators

Operation's arguments


Expression Semantics
i == j

Return type: Convertible to bool.

Semantics: Equivalent to result_of::equal_to<I,J>::value where I and J are the types of i and j respectively.

Header
#include <boost/fusion/iterator/equal_to.hpp>
#include <boost/fusion/include/equal_to.hpp>

PrevUpHomeNext