make_reverse_iterator.rst 442 B

12345678910111213
  1. .. Copyright David Abrahams 2006. Distributed under the Boost
  2. .. Software License, Version 1.0. (See accompanying
  3. .. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. ::
  5. template <class BidirectionalIterator>
  6. reverse_iterator<BidirectionalIterator>n
  7. make_reverse_iterator(BidirectionalIterator x);
  8. :Returns: An instance of ``reverse_iterator<BidirectionalIterator>``
  9. with a ``current`` constructed from ``x``.