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

Concept specifying that T is either a Cell or a value that can be converted to a constant_cell. More...

#include <constant_cell.hpp>

Concept definition

template<typename T>
concept live_cells::CellOrValue = Cell<T> || std::constructible_from<constant_cell<T>, T>
Concept specifying that T is either a Cell or a value that can be converted to a constant_cell.
Definition constant_cell.hpp:141
Defines the cell protocol.
Definition types.hpp:128

Detailed Description

Concept specifying that T is either a Cell or a value that can be converted to a constant_cell.