Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template operator==

boost::histogram::axis::operator== — Compare variant with a concrete axis type.

Synopsis

// In header: <boost/histogram/axis/variant.hpp>


template<class... Us, typename T> 
  bool operator==(const variant< Us... > & u, const T & t);

Description

Return true if the variant point to the same concrete axis type and the types compare equal. Otherwise return false.


PrevUpHomeNext