ReactivePlusPlus
One more implementation of ReactiveX approach in C++ with care about performance and templates in mind
 
Loading...
Searching...
No Matches
rpp::constraint::observer_on_next_exists Concept Reference

Concept definition

template<typename T, typename Type>
concept rpp::constraint::observer_on_next_exists = requires(const T t)
{
t.on_next(std::declval<Type>());
}
Definition: constraints.hpp:50