3#ifndef pRC_CORE_COMPLEX_FUNCTIONS_SQUARE_H
4#define pRC_CORE_COMPLEX_FUNCTIONS_SQUARE_H
11 static inline constexpr auto square(
T const &a)
13 auto const real = a.real() * a.real() - a.imag() * a.imag();
Definition cholesky.hpp:10
Complex(T const &) -> Complex< T >
static constexpr decltype(auto) real(X &&a)
Definition real.hpp:12
static constexpr auto square(T const &a)
Definition square.hpp:11
static constexpr decltype(auto) imag(X &&a)
Definition imag.hpp:12
static constexpr auto identity()
Definition identity.hpp:13