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 init_list

boost::unit_test::data::monomorphic::init_list — Dataset view from an initializer_list or variadic template arguments.

Synopsis

// In header: <boost/test/data/monomorphic/initializer_list.hpp>

template<typename T> 
class init_list {
public:
  // types
  typedef std::vector< T >::const_iterator iterator;

  enum @4 { arity = = 1 };

  // construct/copy/destruct
  init_list(std::initializer_list< T >);
  template<class ... Args> init_list(Args &&...);

  // public member functions
  data::size_t size() const;
  iterator begin() const;
};

Description

The data should be stored in the dataset, and since the elements are passed by an std::initializer_list , it implies a copy of the elements.

init_list public construct/copy/destruct

  1. init_list(std::initializer_list< T > il);
    Constructor copies content of initializer_list.
  2. template<class ... Args> init_list(Args &&... args);
    Variadic template initialization.

init_list public member functions

  1. data::size_t size() const;
    dataset interface
  2. iterator begin() const;

Specializations


PrevUpHomeNext