indirected.qbk 965 B

12345678910111213141516171819202122232425262728293031
  1. [/
  2. Copyright 2010 Neil Groves
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. /]
  6. [section:indirected indirected]
  7. [table
  8. [[Syntax] [Code]]
  9. [[Pipe] [`rng | boost::adaptors::indirected`]]
  10. [[Function] [`boost::adaptors::indirect(rng)`]]
  11. ]
  12. * [*Precondition:] The `value_type` of the range defines unary `operator*()`
  13. * [*Postcondition:] For all elements `x` in the returned range, `x` is the result of `*y` where `y` is the corresponding element in the original range.
  14. * [*Range Category:] __single_pass_range__
  15. * [*Range Return Type:] `boost::indirected_range<decltype(rng)>`
  16. * [*Returned Range Category:] The range category of `rng`
  17. [section:indirected_example indirected example]
  18. [import ../../../test/adaptor_test/indirected_example.cpp]
  19. [indirected_example]
  20. [endsect]
  21. This would produce the output:
  22. ``
  23. 0,1,2,3,4,5,6,7,8,9,
  24. ``
  25. [endsect]