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::zip::iterator

Synopsis

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



struct iterator :
  public boost::unit_test::data::monomorphic::dataset< T >::iterator
{
  // types
  typedef monomorphic::traits< T >::ref_type ref_type;

  // construct/copy/destruct
  explicit iterator(ds1_iter_ptr, ds2_iter_ptr);

  // public member functions
  virtual ref_type operator*();
  virtual void operator++();
};

Description

iterator public construct/copy/destruct

  1. explicit iterator(ds1_iter_ptr iter1, ds2_iter_ptr iter2);

iterator public member functions

  1. virtual ref_type operator*();
  2. virtual void operator++();

PrevUpHomeNext