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

Function template eq

boost::pfr::eq — Compares lhs and rhs for equality using their own comparison and conversion operators; if no operators available returns boost::pfr::eq_fields (lhs, rhs).

Synopsis

// In header: <boost/pfr/ops.hpp>


template<typename T, typename U> unspecified eq(const T & lhs, const U & rhs);

Description

Returns:

true if lhs is equal to rhs; false otherwise


PrevUpHomeNext