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

Type definition static_options

static_options — Generates static axis option type for axis type.

Synopsis

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


typedef unspecified static_options;

Description

WARNING: Doxygen does not render the synopsis correctly. This is a templated using directive, which accepts axis type and returns boost::histogram::axis::option::bitset.

If Axis::options() is valid and constexpr, return the corresponding option type. Otherwise, return boost::histogram::axis::option::growth_t, if the axis has a method update, else return boost::histogram::axis::option::none_t.


PrevUpHomeNext