lround method

int lround(
  1. double _X
)

Implementation

int lround(
  double _X,
) {
  return (_lround ??=
      _dylib.lookupFunction<_c_lround, _dart_lround>('lround'))(
    _X,
  );
}