internal ComplexValue(RealValue realPart, RealValue imaginaryPart) { RealPart = realPart; ImaginaryPart = imaginaryPart; }
public static ComplexValue Value(RealValue real, RealValue imaginary) { return(new(real, imaginary)); }