| 177 | template<typename... Args> |
| 178 | requires constraint::is_constructible_from<Strategy, Args&&...> |
| 179 | explicit observer(DisposableStrategy strategy, Args&&... args) |
| 180 | : Base{std::move(strategy), std::forward<Args>(args)...} |
| 181 | { |
| 182 | } |
| 183 | |
| 184 | template<typename... Args> |
| 185 | requires (constraint::is_constructible_from<Strategy, Args && ...> && !rpp::constraint::variadic_decayed_same_as<observer, Args...>) |
nothing calls this directly
no outgoing calls
no test coverage detected