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()
178 auto dest = make_subscriber<T>(std::forward<ArgN>(an)...); in blocking_subscribe()
241 template<class... ArgN>
242 auto subscribe(ArgN&&... an) const in subscribe()
244 return blocking_subscribe(source, false, std::forward<ArgN>(an)...); in subscribe()
266 template<class... ArgN>
267 auto subscribe_with_rethrow(ArgN&&... an) const in subscribe_with_rethrow()
269 return blocking_subscribe(source, true, std::forward<ArgN>(an)...); in subscribe_with_rethrow()
651 template<class... ArgN>
652 auto subscribe(ArgN&&... an) const in subscribe()
654 return detail_subscribe(make_subscriber<T>(std::forward<ArgN>(an)...)); in subscribe()