round method

Complex round()

Rounds the values of this complex number to integers.

Implementation

Complex round() => Complex(a.round(), b.round());