Live Cells C++
Reactive Programming for C++
Loading...
Searching...
No Matches
live_cells::Computable Concept Reference

Defines a type that computes a value when the call operator operator() is invoked. More...

#include <compute_state.hpp>

Concept definition

template<typename T>
concept live_cells::Computable = std::invocable<T,observer::ref>
Defines a type that computes a value when the call operator operator() is invoked.
Definition compute_state.hpp:41

Detailed Description

Defines a type that computes a value when the call operator operator() is invoked.

The call operator must accept a single observer::ref argument.