Example Code From Presentations
Loading...
Searching...
No Matches
big_math_capable Concept Reference

Concept definition

template<typename T>
concept big_math_capable = std::is_copy_constructible_v<T> &&
requires (T x) {
x + x;
x / x;
}
Definition intro_generic_programming_test.cpp:313