The signum function value of this num.
E.e. -1, 0 or 1 as the value of this num is negative, zero or positive.
int get signum { final v = compareTo(_r0); if (v < 0) return -1; if (v > 0) return 1; return 0; }