Lines Matching refs:ArgN
171 template<class Obsvbl, class... ArgN>
172 static auto blocking_subscribe(const Obsvbl& source, bool do_rethrow, ArgN&&... an) in blocking_subscribe()
179 auto dest = make_subscriber<T>(std::forward<ArgN>(an)...); in blocking_subscribe()
237 template<class... ArgN>
238 auto subscribe(ArgN&&... an) const in subscribe()
240 return blocking_subscribe(source, false, std::forward<ArgN>(an)...); in subscribe()
262 template<class... ArgN>
263 auto subscribe_with_rethrow(ArgN&&... an) const in subscribe_with_rethrow()
265 return blocking_subscribe(source, true, std::forward<ArgN>(an)...); in subscribe_with_rethrow()
647 template<class... ArgN>
648 auto subscribe(ArgN&&... an) const in subscribe()
650 return detail_subscribe(make_subscriber<T>(std::forward<ArgN>(an)...)); in subscribe()