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

Concept of parameters values in iterations. More...

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

Concept definition

template<typename T, typename Algorithm, typename Value>
requires std::is_nothrow_move_constructible_v<T>;
requires requires(const Algorithm* algorithm) {
{ obj.get(algorithm) } -> base::concepts::decayed_to<Value>;
};
}

Detailed Description

Concept of parameters values in iterations.

Template Parameters
TType.
AlgorithmType of the algorithm.
ValueType of values.

Definition at line 36 of file iteration_parameter_value.h.