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

PrevUpHomeNext

is_contiguous_iterator

The is_contiguous_iterator class is a traits class that may be used to determine whether a type is a contiguous iterator.

template<
    typename T>
struct is_contiguous_iterator :
  public integral_constant< bool, std::contiguous_iterator< T > >
Requirements

Header: boost/asio/is_contiguous_iterator.hpp

Convenience header: boost/asio.hpp


PrevUpHomeNext