xentara-workbench-plugin v1.0.1
The Xentara Workbench Plugin Framework
Loading...
Searching...
No Matches
xentara::workbench::bindings::Setter Concept Reference

A concept that describes setters for bindings for a specific value. More...

#include <xentara/workbench/bindings/Concepts.hpp>

Concept definition

template<typename Type, typename BindingValue, typename Object>
concept xentara::workbench::bindings::Setter = std::invocable<Type, Object &, BindingValue &&>
A concept that describes setters for bindings for a specific value.
Definition Concepts.hpp:37

Detailed Description

A concept that describes setters for bindings for a specific value.

The setter must be invokable with a mutable reference to the object and an rvalue reference to the binding value.