MCPcopy Create free account
hub / github.com/AlexInLog/ReactivePlusPlus / observer

Method observer

src/rpp/rpp/observers/observer.hpp:179–182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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...>)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected