Home | History | Annotate | Download | only in util

Lines Matching refs:Rs

74    template<typename... Rs>
75 adaptor_range<zips, Rs...>
76 zip(Rs &&... rs) {
77 return map(zips(), std::forward<Rs>(rs)...);
95 /// \a rs.
100 template<typename F, typename... Rs>
102 for_each(F &&f, Rs &&... rs) {
103 eval(map(std::forward<F>(f), std::forward<Rs>(rs)...));
169 /// on \a rs evaluates to true for all elements.
171 template<typename F, typename... Rs>
173 all_of(F &&f, Rs &&... rs) {
174 for (auto b : map(f, rs...)) {
184 /// on \a rs evaluates to true for any element.
186 template<typename F, typename... Rs>
188 any_of(F &&f, Rs &&... rs) {
189 for (auto b : map(f, rs...)) {