]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/iterator/doc/make_filter_iterator.rst
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / iterator / doc / make_filter_iterator.rst
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 ::
6
7 template <class Predicate, class Iterator>
8 filter_iterator<Predicate,Iterator>
9 make_filter_iterator(Predicate f, Iterator x, Iterator end = Iterator());
10
11 :Returns: filter_iterator<Predicate,Iterator>(f, x, end)
12
13 ::
14
15 template <class Predicate, class Iterator>
16 filter_iterator<Predicate,Iterator>
17 make_filter_iterator(Iterator x, Iterator end = Iterator());
18
19 :Returns: filter_iterator<Predicate,Iterator>(x, end)