]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/mpl/doc/src/refmanual/Sequences-Views.rst
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / mpl / doc / src / refmanual / Sequences-Views.rst
1
2 A *view* is a sequence adaptor delivering an altered presentation of
3 one or more underlying sequences. Views are lazy, meaning that their
4 elements are only computed on demand. Similarly to the short-circuit
5 |logical operations| and |eval_if|, views make it possible to avoid
6 premature errors and inefficiencies from computations whose results
7 will never be used. When approached with views in mind, many
8 algorithmic problems can be solved in a simpler, more conceptually
9 precise, more expressive way.
10
11 .. |Views| replace:: `Views`_
12
13
14 .. copyright:: Copyright © 2001-2009 Aleksey Gurtovoy and David Abrahams
15 Distributed under the Boost Software License, Version 1.0. (See accompanying
16 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)