Complex import { Complex } from "destack:math"; Complex number with floating-point components. export struct Complex { real: T; imaginary: T; } language/library/src/math/complex.ds:8:14 Members real: T The real component. imaginary: T The imaginary component.