llround method

int llround(
  1. double _X
)

Implementation

int llround(
  double _X,
) {
  return (_llround ??=
      _dylib.lookupFunction<_c_llround, _dart_llround>('llround'))(
    _X,
  );
}