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 iterator

boost::unit_test::data::monomorphic::join::iterator

Synopsis

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



struct iterator {
  // construct/copy/destruct
  explicit iterator(dataset1_iter &&, dataset2_iter &&, data::size_t);

  // public member functions
  sample_t operator *() const;
  void operator++();
};

Description

iterator public construct/copy/destruct

  1. explicit iterator(dataset1_iter && it1, dataset2_iter && it2, 
                      data::size_t first_size);

iterator public member functions

  1. sample_t operator *() const;
  2. void operator++();

PrevUpHomeNext