numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::logging::concepts::member_getter_of Concept Reference

Concept of getter functions. More...

#include <num_collect/logging/concepts/member_getter_of.h>

Concept definition

template<typename Func, typename Value, typename Object>
concept num_collect::logging::concepts::member_getter_of = requires(const Func& func, Object* object) {
{ (object->*func)() } -> base::concepts::decayed_to<Value>;
}

Detailed Description

Concept of getter functions.

Template Parameters
FuncType of the function.
ValueType of returned values.
ObjectType of objects.

Definition at line 34 of file member_getter_of.h.