| 31 | template<typename... Args> |
| 32 | requires constraint::is_constructible_from<Strategy, Args&&...> |
| 33 | explicit observer_impl(DisposablesStrategy strategy, Args&&... args) |
| 34 | : m_strategy{std::forward<Args>(args)...} |
| 35 | , m_disposable{std::move(strategy)} |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | public: |
| 40 | static constexpr auto preferred_disposables_mode = rpp::details::observers::disposables_mode::None; |
nothing calls this directly
no outgoing calls
no test coverage detected