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 to view this page for the latest version.
PrevUpHomeNext

Struct template is_continuous

boost::histogram::axis::traits::is_continuous — Whether axis is continuous or discrete.

Synopsis

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

template<typename Axis> 
struct is_continuous {
};

Description

Doxygen does not render this well. This is a meta-function (template alias), it accepts an axis type and returns a compile-time boolean.

If the boolean is true, the axis is continuous (covers a continuous range of values). Otherwise it is discrete (covers discrete values).


PrevUpHomeNext