...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Compares 2 iterators for equality.
template< typename I, typename J > unspecified operator==(I const& i, J const& i);
Table 1.9. Parameters
Parameter |
Requirement |
Description |
---|---|---|
|
Any fusion iterators |
Operation's arguments |
i == j
Return type: Convertible to bool
.
Semantics: Equivalent to
where result_of::equal_to
<I,J>::valueI
and J
are the types of i
and j
respectively.
#include <boost/fusion/iterator/equal_to.hpp> #include <boost/fusion/include/equal_to.hpp>