Home
last modified time | relevance | path

Searched refs:inner_cursor (Results 1 – 3 of 3) sorted by relevance

/external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/
Dlinq_where.hpp13 inner_cursor; typedef in cpplinq::linq_where
18 typename inner_cursor::cursor_category>::type
20 typedef typename inner_cursor::element_type
22 typedef typename inner_cursor::reference_type
25 cursor(const inner_cursor& cur, const Predicate& p) : cur(cur), pred(p) in cursor()
52 inner_cursor cur;
Dlinq_select.hpp15 inner_cursor; typedef in cpplinq::linq_select
18 typedef typename util::result_of<Selector(typename inner_cursor::element_type)>::type
22 typedef typename inner_cursor::cursor_category
25 cursor(const inner_cursor& cur, Selector sel) : cur(cur), sel(std::move(sel)) {} in cursor()
39 inner_cursor cur;
Dlinq_groupby.hpp61 inner_cursor; typedef in cpplinq::linq_groupby
63 typedef typename util::result_of<KeyFn(typename inner_cursor::element_type)>::type
66 typedef std::list<typename inner_cursor::element_type>
91 impl_t(inner_cursor cur, in impl_t()
101 void insert_all(inner_cursor cur) in insert_all()
108 void insert(typename inner_cursor::reference_type element) in insert()
148 cursor(inner_cursor cur, in cursor()