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

Class template storage_adaptor

boost::histogram::storage_adaptor — Turns any vector-like array-like, and map-like container into a storage type.

Synopsis

// In header: <boost/histogram/storage_adaptor.hpp>

template<typename T> 
class storage_adaptor {
public:

  // public member functions
  template<typename U, typename  = detail::requires_iterable<U> > 
    bool operator==(const U &) const;
};

Description

storage_adaptor public member functions

  1. template<typename U, typename  = detail::requires_iterable<U> > 
      bool operator==(const U & u) const;

PrevUpHomeNext