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

identity_view

View on a range, not modifying anything.

Synopsis

template<typename Range>
struct identity_view
{
  // ...
};

Template parameter(s)

Parameter

Description

typename Range

original range

Constructor(s)

Function

Description

Parameters

identity_view(Range & r)

Range &: r:

Member Function(s)

Function

Description

Parameters

Returns

const_iterator begin()

const_iterator end()

iterator begin()

iterator end()

Header

Either

#include <boost/geometry.hpp>

Or

#include <boost/geometry/views/identity_view.hpp>


PrevUpHomeNext