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

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template operator==

boost::histogram::axis::operator== — Compare two variants.

Synopsis

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


template<class... Us, class... Vs> 
  bool operator==(const variant< Us... > & u, const variant< Vs... > & v);

Description

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


PrevUpHomeNext