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

Struct non_proxy_iterator

boost::unit_test::data::monomorphic::init_list<bool>::non_proxy_iterator

Synopsis

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



struct non_proxy_iterator {
  // construct/copy/destruct
  non_proxy_iterator(std::vector< bool >::const_iterator &&);

  // public member functions
  bool operator *() const;
  non_proxy_iterator & operator++();

  // public data members
  std::vector< bool >::const_iterator iterator;
};

Description

non_proxy_iterator public construct/copy/destruct

  1. non_proxy_iterator(std::vector< bool >::const_iterator && it);

non_proxy_iterator public member functions

  1. bool operator *() const;
  2. non_proxy_iterator & operator++();

PrevUpHomeNext