MPL11
 All Classes Namespaces Files Typedefs Macros Groups Pages
boost::mpl11::equal< x1, x2, xs > Struct Template Reference

Returns whether the given objects are equal. More...

#include <boost/mpl11/fwd/comparable.hpp>

Detailed Description

template<typename x1, typename x2, typename... xs>
struct boost::mpl11::equal< x1, x2, xs >

Returns whether the given objects are equal.

This method can be invoked with more than two arguments. Specifically, equal<x1, x2, xs...> is equivalent to and_<equal<x1, x2>, equal<x2, xs...>>, and equal<x1, x2> uses the usual dispatching technique.