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

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Operator !=

Description

Compares 2 iterators for inequality.

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

Table 1.10. Parameters

Parameter

Requirement

Description

i, j

Any fusion iterators

Operation's arguments


Expression Semantics

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