The square root of z.
static import core.math; assert(sqrt(complex(0.0)) == 0.0); assert(sqrt(complex(1.0L, 0)) == core.math.sqrt(1.0L)); assert(sqrt(complex(-1.0L, 0)) == complex(0, 1.0L)); assert(sqrt(complex(-8.0, -6.0)) == complex(1.0, -3.0));
See Implementation