cMHN 1.2
C++ library for learning MHNs with pRC
Loading...
Searching...
No Matches
pRC::IsComplex Concept Reference

#include <complex.hpp>

Concept definition

template<class T>
concept pRC::IsComplex = !IsReference<T> && requires {
{
[]<class U>(Complex<U> const &&)
{
}(std::declval<T>())
};
}
Definition complex.hpp:188
Definition concepts.hpp:19
Complex(T const &) -> Complex< T >