Jamba C++ API 8.0.0
Loading...
Searching...
No Matches
pongasoft::Utils::UnaryModifier Concept Reference

Matches a callable used for modification. More...

#include <Concepts.h>

Concept definition

template<typename F, typename T>
concept UnaryModifier = std::invocable<F &, T &>
Matches a callable used for modification.
Definition Concepts.h:40

Detailed Description

Matches a callable used for modification.

Accepts T, or T& for example, std::function<void(T &)>