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

Concept of types usable in kahan_adder class. More...

#include <num_collect/util/concepts/kahan_addable.h>

Concept definition

template<typename T>
concept num_collect::util::concepts::kahan_addable = requires(T& a, const T& b, const T& c) {
a += b;
a -= b;
a = b - c;
}
Concept of types usable in kahan_adder class.

Detailed Description

Concept of types usable in kahan_adder class.

Template Parameters
TType.

Definition at line 30 of file kahan_addable.h.