llabs method

int llabs(
  1. int n
)

Computes the absolute value of a long long integer.

Implementation

int llabs(int n) => n.abs();