Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template equal_to

boost::pfr::equal_to — std::equal_to like comparator that returns boost::pfr::eq (x, y)

Synopsis

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

template<typename T = void> 
struct equal_to {

  // public member functions
  bool operator()(const T &, const T &) const;
};

Description

equal_to public member functions

  1. bool operator()(const T & x, const T & y) const;

    Returns:

    true if each field of x equals the field with same index of y.


PrevUpHomeNext