| 45 | template<typename... Args> |
| 46 | requires (!constraint::variadic_decayed_same_as<observable<Type, Strategy>, Args...> && constraint::is_constructible_from<Strategy, Args && ...>) |
| 47 | observable(Args&&... args) |
| 48 | : m_strategy{std::forward<Args>(args)...} |
| 49 | { |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * @brief Subscribes passed observer to emissions from this observable. |
nothing calls this directly
no outgoing calls
no test coverage detected